-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
{
"name": "graphqlnode",
"version": "0.0.0",
"description": "Introduction to GraphQL in nodeJS",
"license": "GPL",
"repository": {
"type": "git",
"url": "https://github.com/bruno12mota/graphql-nodejs"
},
"main": "src/index.js",
"scripts": {
"start":
"nodemon src/index.js --exec babel-node --presets es2015,stage-2",
"serve": "node dist/index.js",
"build": "babel src -d dist",
"precommit": "lint-staged",
"test":
"NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 10000 --compilers js:babel-register --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --trailing-comma es5 --single-quote --tab-width 4 --write",
"git add"
]
},
"dependencies": {
"babel": "^5.8.23",
"config": "1.30.0",
"express": "^4.16.2",
"express-graphql": "^0.6.12",
"graphql": "^0.13.1",
"graphql-custom-types": "^1.3.0",
"mongoose": "^5.0.9"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"chai-http": "3.0.0",
"coveralls": "3.0.0",
"eslint-plugin-mocha": "4.12.1",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"mocha": "5.0.4",
"nodemon": "1.17.1",
"nyc": "11.6.0",
"prettier": "1.11.1"
}
}