-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1023 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1023 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
35
{
"name": "graphql-testing-workshop",
"version": "1.0.0",
"description": "GrahpQL API Gateway Testing Workshop",
"main": "src/server.js",
"scripts": {
"start": "npm-run-all --parallel json-server node-server",
"node-server": "nodemon src/server.js --exec babel-node",
"json-server": "json-server --watch db.json",
"test": "mocha --compilers js:babel-core/register ./test/**/*.spec.js --exit"
},
"repository": "https://github.com/aofleejay/graphql-testing-workshop.git",
"author": "aofleejay",
"license": "MIT",
"dependencies": {
"apollo-server-express": "1.3.6",
"axios": "0.18.0",
"body-parser": "1.18.2",
"dotenv": "5.0.1",
"express": "4.16.3",
"graphql": "0.13.2",
"graphql-tools": "3.0.0",
"npm-run-all": "4.1.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"json-server": "0.12.2",
"mocha": "5.1.1",
"nodemon": "1.17.3",
"sinon": "5.0.3",
"supertest": "3.0.0"
}
}