-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.22 KB
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
{
"name": "shri-2018",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "semistandard",
"reset-db": "rm -f ./db.sqlite3 && node create-mock-data.js",
"dev": "nodemon index.js --exec babel-node --presets es2015,stage-2"
},
"dependencies": {
"express": "^4.15.4",
"express-graphql": "^0.6.11",
"graphql": "^0.11.1",
"graphql-date": "^1.0.3",
"graphql-tools": "^1.2.1",
"moment-range": "^3.1.0",
"sequelize": "^4.7.5",
"sqlite3": "^3.1.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.22.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.1",
"gulp-less": "^3.4.0",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^4.3.11",
"node-fetch": "^1.7.3",
"nodemon": "^1.14.3",
"semistandard": "^11.0.0",
"simplebar": "^2.5.1",
"twig": "^1.10.5"
}
}