-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "expense-tracker",
"version": "1.0.0",
"description": "This app help you to manage your money.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node backend/index.js",
"dev": "NODE_ENV=development node backend/index.js",
"build": "npm install && npm install --prefix client && npm run test --prefix client && npm run build --prefix client",
"format": "prettier --write .",
"check-format": "prettier --check .",
"ci": "npm run check-format",
"prepare": "husky"
},
"keywords": [
"expense",
"money",
"manage",
"tracks"
],
"author": "Shivam Sharma",
"repository": {
"type": "git",
"url": "https://github.com/shivam-sharma7/expensify.git"
},
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.11.0",
"@graphql-tools/merge": "^9.0.7",
"bcryptjs": "^2.4.3",
"client": "^0.0.1",
"connect-mongodb-session": "^5.0.0",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"graphql": "^16.9.0",
"graphql-passport": "^0.6.8",
"mongoose": "^8.7.0",
"passport": "^0.7.0"
},
"devDependencies": {
"husky": "^9.1.6",
"prettier": "^3.3.3"
}
}