-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 973 Bytes
/
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
{
"name": "spacex-graphql",
"version": "1.0.0",
"engines": {
"node": ">=8.4.0"
},
"description": "GraphQL training",
"main": "server.js",
"author": "Andrey Leonardo",
"license": "MIT",
"scripts": {
"start:dev": "NODE_ENV=development nodemon -e js,graphql server.js",
"test": "jest --watch"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"lodash": "^4.17.19",
"morgan": "^1.9.1",
"schemaglue": "^4.0.2"
},
"devDependencies": {
"axios-mock-adapter": "^1.16.0",
"eslint": "^5.12.0",
"eslint-plugin-node": "^8.0.1",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.3.0"
},
"jest": {
"preset": "./config/jest-config.json"
},
"nodemonConfig": {
"ignore": [
"*.spec.js"
]
}
}