-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "ci-react",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-preset-stage-0": "^6.24.1",
"express": "^4.15.3",
"lodash.debounce": "^4.0.8",
"lru-cache": "^4.0.2",
"next": "^2.4.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-ga": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4",
"standard": "^10.0.2"
},
"scripts": {
"dev": "node server.js",
"build": "next build && git rev-parse HEAD > .next/BUILD_ID",
"start": "NODE_ENV=production node server.js",
"lint": "prettier 'utils/**/*.js' 'static/js/**/*.js' 'components/**/*.js' 'pages/**/*.js' '*.js' --write --single-quote --no-semi && standard --fix",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --no-semi",
"standard --fix",
"git add"
]
},
"standard": {
"globals": [
"fetch",
"$"
],
"parser": "babel-eslint"
}
}