-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 901 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 901 Bytes
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
{
"name": "expense-tracker-gql-mern",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=development&& nodemon backend/index.js",
"start": "set NODE_ENV=production&& node backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"type": "module",
"keywords": [],
"author": "Ali Mohsin",
"license": "ISC",
"description": "A GraphQl project built with MERN",
"dependencies": {
"@apollo/server": "^4.11.2",
"@graphql-tools/merge": "^9.0.12",
"bcryptjs": "^2.4.3",
"connect-mongodb-session": "^5.0.0",
"cron": "^3.3.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"graphql": "^16.9.0",
"graphql-passport": "^0.6.8",
"mongoose": "^8.8.4",
"passport": "^0.7.0"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}