-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.55 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
{
"name": "partido-express",
"version": "0.0.0.",
"author": "Ming You Tsai",
"private": true,
"scripts": {
"fix": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"start": "node scripts/run.js",
"dev": "node --inspect=0.0.0.0:9229 scripts/run.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --no-ignore --fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"apollo-server-koa": "^2.5.0",
"babel-plugin-module-resolver": "^3.2.0",
"chokidar": "^2.1.2",
"del": "^4.0.0",
"express-validator": "^5.3.1",
"graphql": "^14.3.0",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"pretty-error": "^2.1.1",
"source-map-support": "^0.5.11"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
}
}