-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.07 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.07 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "large-screen-configuration",
"version": "1.0.0",
"description": "从零搭建React 拖动配置大屏的后台管理系统工程",
"main": ".eslintrc.js",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint-config-app": "^1.0.6",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"lint-staged": "^16.1.2",
"mini-css-extract-plugin": "^2.7.6",
"portfinder": "^1.0.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.0",
"react-refresh": "^0.14.0",
"sass": "^1.64.1",
"sass-loader": "^13.3.2",
"sass-resources-loader": "^2.2.5",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpackbar": "^5.0.2"
},
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development TENANT=main webpack serve --config ./config/webpack.dev.js",
"build": "cross-env NODE_ENV=production TENANT=main webpack --config ./config/webpack.prod.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myfirebug/cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/myfirebug/cli/issues"
},
"homepage": "https://github.com/myfirebug/cli#readme",
"dependencies": {
"@ant-design/icons": "^5.5.2",
"@ant-design/pro-components": "^2.8.4",
"@types/jsoneditor": "^9.9.5",
"@types/mockjs": "^1.0.10",
"@types/react-grid-layout": "^1.3.5",
"@types/tinycolor2": "^1.4.6",
"ahooks": "^3.8.4",
"animate.css": "^4.1.1",
"antd": "^5.23.1",
"axios": "^1.4.0",
"compression-webpack-plugin": "^11.1.0",
"countup.js": "^2.8.0",
"css-vars-ponyfill": "^2.4.8",
"dayjs": "^1.11.13",
"echarts": "^5.4.3",
"html2canvas": "^1.4.1",
"jsoneditor": "^10.1.3",
"localforage": "^1.10.0",
"mockjs": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.5",
"react-grid-layout": "^1.5.0",
"react-router-dom": "^6.14.2",
"swiper": "^11.2.4",
"tinycolor2": "^1.6.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not dead"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint"
]
}
}