-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "expense-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development nodemon -r dotenv/config backend/index.js",
"start": "cross-env NODE_ENV=production node -r dotenv/config backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "Amit Amrutiya",
"license": "ISC",
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"nodemon": "^3.1.0"
},
"dependencies": {
"@apollo/server": "^4.10.2",
"@graphql-tools/merge": "^9.0.3",
"bcryptjs": "^2.4.3",
"connect-mongodb-session": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"graphql": "^16.8.1",
"graphql-passport": "^0.6.8",
"http": "^0.0.1-security",
"https": "^1.0.0",
"mongoose": "^8.3.1",
"passport": "^0.7.0",
"path": "^0.12.7"
}
}