-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 985 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "shri-2018",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
},
"scripts": {
"test": "jest",
"lint": "semistandard",
"reset-db": "rm -f ./db.sqlite3 && node create-mock-data.js",
"dev": "nodemon index.js",
"ci:travis": "npm run lint && npm test",
"precommit": "lint-staged && npm run lint"
},
"lint-staged": {
"*.js": [
"semistandard --fix",
"git add"
]
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.15.4",
"express-blank-favicon": "^1.0.1",
"express-graphql": "^0.6.11",
"graphql": "^0.11.1",
"graphql-date": "^1.0.3",
"graphql-tools": "^1.2.1",
"sequelize": "^4.7.5",
"sqlite3": "^3.1.9"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.0.4",
"lint-staged": "^6.0.0",
"nodemon": "^1.12.5",
"semistandard": "^11.0.0",
"supertest": "^3.0.0"
}
}