-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 740 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 740 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
{
"name": "graphql-node-express",
"version": "1.0.0",
"description": "Based on online tutorial",
"main": "server.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/majkelch/graphql-node-express.git"
},
"author": "Michał Chruściel",
"license": "MIT",
"bugs": {
"url": "https://github.com/majkelch/graphql-node-express/issues"
},
"homepage": "https://github.com/majkelch/graphql-node-express#readme",
"dependencies": {
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"ramda": "^0.26.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"jest": "^23.6.0"
}
}