-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "reactjslidate",
"version": "0.1.0",
"private": true,
"scripts": {
"precommit": "lint-staged",
"build-css":
"node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css":
"npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules 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",
"analyze": "source-map-explorer build/static/js/main.*",
"pretty-scss": "stylelint 'src/**/*.scss' --fix",
"pretty-js":
"prettier --write --config ./.prettierrc 'src/**/*.{js,jsx,json}'",
"test": "react-scripts src --env=jsdom"
},
"lint-staged": {
"src/**/*.{js,jsx,json,scss}": [
"npm run pretty-scss",
"npm run pretty-js",
"git add"
]
},
"dependencies": {
"classnames": "2.2.5",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "2.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"postcss-jsx": "0.25.0",
"postcss-syntax": "0.25.0",
"prettier": "^1.12.1",
"react-scripts": "^1.1.4",
"source-map-explorer": "1.5.0",
"stylelint": "^9.1.1",
"stylelint-config-standard": "^18.2.0"
}
}