-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 972 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 972 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
33
34
{
"name": "jumptonext-backend",
"version": "0.1.0",
"description": "",
"author": "Juha Malinen",
"license": "ISC",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node src/jumptonext-backend.js",
"dev": "cross-env NODE_ENV=test nodemon src/jumptonext-backend.js"
},
"dependencies": {
"@apollo/server": "^4.9.1",
"@graphql-tools/schema": "^10.0.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.8.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.14.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.3",
"mongoose-unique-validator": "^4.0.0",
"node-fetch": "^2.7.0",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.2"
}
}