-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "kts-frontend-summer-2021",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "npx webpack serve --mode=development --history-api-fallback",
"build": "npx webpack --mode=production",
"ts-check": "tsc --skipLibCheck --noEmit --project tsconfig.json"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@types/webpack-env": "^1.16.2",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"babel-preset-mobx": "^2.0.0",
"css-loader": "^6.3.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "4.14.1",
"postcss-loader": "^6.1.1",
"react-refresh": "^0.10.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"typescript": "^4.4.3",
"webpack": "^5.55.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
},
"browserslist": [
"chrome 9"
],
"dependencies": {
"antd": "^4.16.13",
"html-webpack-plugin": "^5.3.2",
"mobx": "^6.3.3",
"mobx-react-lite": "^3.2.1",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^5.3.0"
}
}