-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.29 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean-dist": "rimraf ./dist",
"check-types": "tsc",
"dev": "npm run clean-dist && cross-env NODE_ENV=development webpack-dev-server --config webpack/webpack.dev.js --env.dev",
"build": "npm run clean-dist && cross-env NODE_ENV=development webpack --config webpack/webpack.build.js --env.dev"
},
"author": "Genluo",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.1.0",
"@ant-design/pro-layout": "^5.0.10",
"@loadable/component": "^5.12.0",
"antd": "^4.2.0",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"qiankun": "^2.0.11",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.1.2",
"typescript": "^3.8.3",
"typescript-cli": "^0.1.0",
"use-merge-value": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"@babel/preset-stage-3": "^7.8.3",
"@babel/preset-typescript": "^7.9.0",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-helmet": "^5.0.15",
"@types/react-router-dom": "^5.1.5",
"@types/typescript": "^2.0.0",
"@types/webpack": "^4.41.12",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-alloy": "^3.7.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^6.2.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"url-loader": "^3.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}