-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "budgetster-backend",
"version": "1.0.0",
"description": "Backend for Budgetster, a budgeting app that allows users to track their spending and saving habits. Built with Node.js, GraphQL, and MongoDB.",
"main": "index.ts",
"scripts": {
"compile": "tsc",
"start": "nodemon index.ts",
"prepare": "husky install",
"lint": "eslint ./ --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"seed": "ts-node util/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacoblurie29/budgetster-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jacoblurie29/budgetster-backend/issues"
},
"homepage": "https://github.com/jacoblurie29/budgetster-backend#readme",
"dependencies": {
"@apollo/server": "^4.7.4",
"apollo-server": "^3.12.0",
"apollo-server-errors": "^3.3.1",
"apollo-server-express": "^3.12.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-middleware": "^6.1.34",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.0",
"jsonwebtoken": "^9.0.1",
"mongodb": "^5.6.0",
"mongoose": "^7.3.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"prettier": "2.8.8"
}
}