-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·64 lines (64 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "shri-2018",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
},
"scripts": {
"build": "webpack",
"comb": "./node_modules/.bin/csscomb static/style/*",
"dev": "nodemon index.js",
"lint": "eslint --ext=js --fix graphql models pages public index.js",
"precommit": "npm run lint && npm run comb",
"reset-db": "rm -f ./db.sqlite3 && node create-mock-data.js",
"start": "node index.js"
},
"dependencies": {
"express": "^4.15.4",
"express-graphql": "^0.6.11",
"graphql": "^0.11.1",
"graphql-date": "^1.0.3",
"graphql-tools": "^1.2.1",
"lodash": "^4.17.5",
"mediator-js": "0.9.7",
"mustache": "^2.3.0",
"normalize.css": "^7.0.0",
"postcss-cssnext": "^3.0.2",
"sequelize": "^4.7.5",
"sqlite3": "^3.1.9"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"css-loader": "^0.28.8",
"csscomb": "^4.2.0",
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"file-loader": "^1.1.6",
"fs": "0.0.1-security",
"handlebars": "^4.0.11",
"handlebars-fs": "^1.0.0",
"handlebars-loader": "^1.6.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"mustache-loader": "^1.4.0",
"nodemon": "^1.12.5",
"path": "^0.12.7",
"postcss-calc": "^6.0.1",
"postcss-csscomb": "^1.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-short": "^4.1.0",
"postcss-variables-loader": "^5.0.1",
"precss": "^2.0.0",
"semistandard": "^11.0.0",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.5.6"
}
}