-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
{
"name": "sty-react-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn dev",
"dev": "webpack-dev-server --open --config ./config/webpack.dev.js",
"build": "webpack --config ./config/webpack.prod.js",
"analyz": "webpack-bundle-analyzer --port 8001 ./build/stats.json",
"lint": "eslint site components --ext .ts,.tsx,.jsx"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-react": "^7.7.0",
"@types/react": "^16.9.49",
"@types/react-router-config": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.0.0-beta.5",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.1.2",
"style-loader": "^1.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/react-router-dom": "^5.1.6",
"@vant/touch-emulator": "^1.2.0",
"dayjs": "^1.10.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1"
}
}