-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
58
59
60
61
{
"name": "web_app_sample",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/domclick/web_app_sample.git"
},
"license": "MIT",
"description": "Web app sample",
"author": "[email protected]",
"dependencies": {
"lodash.random": "3.2.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router5": "8.0.1",
"router5": "8.0.1",
"router5-plugin-browser": "8.0.1"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"autoprefixer": "9.8.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.5.3",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.1.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"eslint-plugin-sonarjs": "0.5.0",
"html-webpack-plugin": "4.3.0",
"mini-css-extract-plugin": "0.9.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-loader": "3.0.0",
"style-loader": "1.2.1",
"stylint": "2.0.0",
"stylint-json-reporter": "0.3.1",
"stylus": "0.54.7",
"stylus-loader": "3.0.2",
"unused-files-webpack-plugin": "3.4.0",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
},
"scripts": {
"build": "npm run lint && BABEL_ENV=production webpack --env=prod --progress",
"start": "webpack-dev-server --env=dev",
"analyze": "webpack --env=analyze --progress",
"lint": "stylint src/ && eslint --ext .js,.jsx src/"
}
}