-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "graphene",
"version": "0.4.1",
"private": true,
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.0.17",
"react-scrollspy": "^3.3.5",
"smoothscroll-polyfill": "^0.4.0"
},
"scripts": {
"precommit": "lint-staged",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.js\" -c .eslintrc --fix",
"pretify": "prettier-eslint --single-quote --write src/**/*.{js,jsx,json,scss}",
"build:serve": "npm run build && http-server ./build/"
},
"lint-staged": {
"src/**/*.{js,jsx,json,scss}": [
"prettier-eslint --single-quote --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "8.2.1",
"eslint": "4.15.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.5.1",
"http-server": "^0.11.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"prettier-eslint": "^8.7.4",
"prettier-eslint-cli": "^4.7.0"
},
"engines": {
"node": "8.2.0"
}
}