-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "dojo-introduction-graphql-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon -e js,json,graphql server.js",
"lint:graphql": "node .graphql-schema-validator.js && echo 'Valid GraphQL schema!'",
"test:graphql": "mocha --exit tests/graphql.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunogsa/dojo-introduction-graphql.git"
},
"keywords": [
"graphql",
"node",
"express"
],
"author": "Bruno Agostini",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunogsa/dojo-introduction-graphql/issues"
},
"homepage": "https://github.com/brunogsa/dojo-introduction-graphql#readme",
"dependencies": {
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.4.2",
"graphql-scalars": "^0.4.6",
"graphql-tools": "^4.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}