-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 2.95 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "project-module",
"version": "1.0.0",
"main": "src/index.tsx",
"scripts": {
"start": "webpack serve --config ./webpack/webpack.config.js --watch",
"build": "webpack build --config ./webpack/webpack.config.js",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.0.0"
}
}
],
[
"@babel/preset-typescript",
{
"targets": {
"node": "8.0.0"
}
}
]
]
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@babel/plugin-transform-template-literals": "^7.24.6",
"antd": "^5.7.3",
"classnames": "^2.5.1",
"events": "^3.3.0",
"lodash": "^4.17.21",
"postcss": "^8.4.41",
"postcss-discard": "^2.0.0",
"postcss-remove-rules": "^1.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-grid-layout": "^1.4.4",
"storybook": "^7.6.17",
"url": "^0.11.3"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@react-spring/web": "^9.7.3",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"@types/react-grid-layout": "^1.3.5",
"@typescript-eslint/parser": "^7.1.1",
"babel-loader": "^9.1.3",
"commitizen": "^4.3.0",
"css-loader": "^6.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"nodemon": "^3.0.1",
"prettier": "^3.1.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"react-scripts": "^5.0.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"nodemonConfig": {
"env": {
"NODE_ENV": "dev"
},
"execMap": {
"js": "node --harmony"
},
"ext": "js json",
"ignore": [
"dist/"
],
"watch": [
"src/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}