-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "VA11-Shop",
"version": "1.0.0",
"description": "",
"private": true,
"directories": {
"doc": "doc"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:server": "npm install && npm run build",
"install:CI": "cd ./CI/server && npm i",
"build": "webpack --config config/webpack.prod.js",
"dev": "webpack-dev-server --host 0.0.0.0 --open --config config/webpack.dev.js"
},
"sideEffects": [
"*.css"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/loadable__component": "^5.13.1",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-redux": "^7.1.11",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-loader": "^8.2.1",
"babel-plugin-import": "^1.13.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"del-webpack-plugin": "^2.0.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"redux-devtools": "^3.7.0",
"source-map-loader": "^1.1.2",
"style-loader": "^2.0.0",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"husky": {
"hooks": {
"pre-commit": "eslint ./",
"commit-msg": "node CI/husky-verify/verify-commit.js"
}
},
"dependencies": {
"@ant-design/icons": "^4.3.0",
"@loadable/component": "^5.14.1",
"antd-mobile": "^2.3.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-infinite-scroller": "^1.2.4",
"react-lazyload": "^3.1.0",
"react-player": "^2.7.2",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
}
}