-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 768 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
{
"name": "graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node backend/index.js",
"dev": "NODE_ENV=development nodemon backend/index.js",
"build": "npm i && npm i --prefix frontend && npm run build --prefix frontend"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.10.4",
"@graphql-tools/merge": "^9.0.3",
"bcryptjs": "^2.4.3",
"connect-mongodb-session": "^5.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"graphql": "^16.8.1",
"graphql-passport": "^0.6.8",
"mongoose": "^8.3.2",
"nodemon": "^3.1.0",
"passport": "^0.7.0"
}
}