-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "webpack-template",
"version": "0.0.1",
"description": "webpack-template",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --config ./config/dev.cfg.js",
"build": "cross-env NODE_ENV=production webpack --progress --config ./config/prod.cfg.js && size-limit",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"stylelint": "stylelint src/**/*.scss",
"stylelint-fix": "stylelint --fix src/**/*.scss",
"server": "node ./config/server/server.js",
"sortmq": "node ./config/helpers/sortmq.js",
"purify": "node ./config/helpers/purify.js",
"size": "size-limit"
},
"size-limit": [
{
"path": "./dist/js/*.js",
"limit": "2000 ms"
}
],
"browserslist": {
"production": [
"last 2 versions",
"not dead",
"not ie 11",
"not ie_mob 11",
"not op_mini all",
"not op_mob > 0",
"not and_qq > 0",
"not android > 0"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@size-limit/preset-app": "^6.0.3",
"@svgr/webpack": "^5.5.0",
"@types/history": "^4.7.9",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"babel-plugin-lodash": "^3.3.4",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"css-mqpacker": "^7.0.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^8.1.0",
"eslint-plugin-mobx-observer-checker": "^1.0.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-svg-import-helper": "^1.0.3",
"fork-ts-checker-webpack-plugin": "^6.4.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.4.0",
"image-webpack-loader": "^8.0.1",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.4.3",
"node-static": "^0.7.11",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"purify-css": "^1.2.5",
"react-refresh": "^0.10.0",
"sass": "^1.43.3",
"sass-loader": "^12.2.0",
"sass-resources-loader": "^2.2.4",
"size-limit": "^6.0.3",
"stylelint": "^14.0.0",
"stylelint-config-standard": "^23.0.0",
"stylelint-scss": "^4.0.0",
"svgo": "^2.7.0",
"svgo-loader": "^3.0.0",
"typescript": "^4.4.4",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"axios": "^0.23.0",
"clsx": "^1.1.1",
"mobx": "^6.3.5",
"mobx-react-lite": "^3.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
}
}