-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.28 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": "portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"node-sass-chokidar": "^1.3.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.75.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"node-sass": "^4.9.0",
"prettier-eslint": "^8.8.2",
"rebuild-node-sass": "^1.1.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"flow": "flow",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage",
"precommit": "lint-staged",
"pretty": "eslint --fix"
},
"lint-staged": {
"*.js": [
"yarn pretty",
"git add"
]
}
}