-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
40
41
42
{
"name": "gitbase-graphql",
"version": "0.0.1",
"description": "GraphQL layer for GitBase.",
"main": "server.js",
"dependencies": {
"apollo-server-express": "^1.3.4",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^2.23.1",
"graphql-type-json": "^0.2.1",
"grpc": "^1.10.1",
"mysql": "^2.15.0",
"promise-mysql": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.18.0",
"graphql-markdown": "^3.2.0",
"jest": "^23.4.1",
"nodemon": "^1.17.3"
},
"babel": {
"presets": [
"env"
]
},
"scripts": {
"start": "nodemon ./server.js --exec babel-node",
"lint": "eslint .",
"format": "eslint --fix .",
"docs": "npx graphql-markdown http://localhost:3000/graphql > schema.md",
"test": "./test.sh",
"coverage": "codecov"
}
}