-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
49
50
51
{
"name": "handbook-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"create-env": "printenv > .env",
"deploy": "gcloud app deploy",
"dev": "nodemon server.js",
"start": "node server.js",
"test": "jest",
"watch": " jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/explorejs/handbook-node.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/explorejs/handbook-node/issues"
},
"homepage": "https://github.com/explorejs/handbook-node#readme",
"dependencies": {
"apollo-server-core": "^3.11.1",
"apollo-server-express": "^3.6.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-rate-limit": "^5.2.6",
"express-validator": "^6.9.2",
"firebase-admin": "^9.5.0",
"graphql": "^16.2.0",
"graphql-tag": "^2.12.6",
"mongoose": "^5.13.15",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.20",
"supertest": "^6.1.3"
},
"engines": {
"node": "14"
},
"volta": {
"node": "14.15.4"
}
}