-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.28 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
52
53
54
55
56
57
58
59
{
"name": "graphql-learning",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/vd89/graphql-learning.git"
},
"keywords": [
"node",
"express",
"graphql",
"mongodb"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vd89/graphql-learning/issues"
},
"engines": {
"node": "^16.17.0",
"npm": "^8.15.0",
"yarn": "^1.22.19"
},
"homepage": "https://github.com/vd89/graphql-learning#readme",
"dependencies": {
"apollo-server": "^3.10.2",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"config": "^3.3.8",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-iso-date": "^3.6.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.4",
"morgan": "^1.10.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"scripts": {
"dev": "nodemon",
"start": "NODE_ENV=production DEBUG=app:* node .",
"test": "echo \"Error: no test specified\" && exit 1"
}
}