-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.7 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
{
"name": "b",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "export NODE_ENV=production && ./node_modules/.bin/webpack --config ./build/webpack.config.js --mode production --progress --colors --env",
"dev": "export NODE_ENV=development && nodemon --watch ./build/config.js --exec npm run dev:server",
"dev:server": "webpack-dev-server --config ./build/webpack.dev.config.js --mode development --color --progress --hot",
"lint": "eslint . --fix --ext .js,.ts,.tsx"
},
"author": "smackgg <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.6",
"@types/classnames": "^2.2.9",
"@types/get-value": "^3.0.1",
"@types/loadable__component": "^5.10.0",
"@types/qs": "^6.9.0",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.3.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^4.0.0-beta.9",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^2.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^1.12.1",
"raw-loader": "^4.0.0",
"react-hot-loader": "^4.12.18",
"smart-px2rem-loader": "^0.1.12",
"typescript": "^3.7.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@loadable/component": "^5.11.0",
"antd-mobile": "^2.3.1",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"clipboard": "^2.0.4",
"get-value": "^3.0.1",
"html2canvas": "^1.0.0-rc.5",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2"
}
}