-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
31 lines (31 loc) · 944 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
{
"name": "rest-to-graphql-workshop",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node_modules/.bin/nodemon src/index.js",
"start-babel": "node_modules/.bin/nodemon -- node_modules/.bin/babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactgraphqlacademy/rest-to-graphql-workshop.git"
},
"author": "React Graphql Academy",
"license": "GPL version 3",
"bugs": {
"url": "https://github.com/reactgraphqlacademy/rest-to-graphql-workshop/issues"
},
"homepage": "https://github.com/reactgraphqlacademy/rest-to-graphql-workshop#readme",
"dependencies": {
"apollo-server": "^2.5.0",
"graphql": "^14.3.1",
"graphql-relay": "^0.6.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"nodemon": "^1.19.1"
}
}