-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.11 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.11 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
{
"name": "create-react-web",
"version": "1.0.0",
"description": "前端脚手架",
"main": "index.js",
"workspaces": [
"package/*"
],
"scripts": {
"start": "webpack-dev-server --config build/webpack.config.dev.js",
"build": "webpack --config build/webpack.config.prod.js",
"analyze": "cross-env ANALYZE=true npm run build",
"dev": "vite",
"vite:build": "vite build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/3254954760/create-react-web.git"
},
"author": "李勇",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^6.1.1",
"@babel/runtime": "^7.27.6",
"@babel/runtime-corejs3": "^7.27.6",
"@create-react-web/hook": "workspace:^1.0.0",
"@create-react-web/ui": "workspace:^1.0.0",
"@sentry/react": "^8.24.0",
"antd": "^5.24.7",
"axios": "^1.8.4",
"i18next": "^25.7.3",
"js-cookie": "^3.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "5.3.4",
"streamdown": "^2.5.0",
"@streamdown/cjk": "1.0.2",
"@streamdown/code": "1.0.2",
"@streamdown/math": "1.0.2",
"@streamdown/mermaid": "1.0.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-decorators": "^7.27.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.3",
"@types/react": "^19.1.2",
"@types/react-router-config": "^5.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^6.0.1",
"babel-loader": "^8.3.0",
"babel-plugin-import": "^1.13.8",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^8.0.0",
"less": "^4.3.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.5.2",
"mini-css-extract-plugin": "^1.6.2",
"prettier": "^3.2.5",
"style-loader": "^4.0.0",
"typescript": "^5.8.3",
"vite": "^8.0.3",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^4.2.2"
},
"lint-staged": {
"*.{js,jsx,tsx}": [
"prettier --write"
],
"*.{css,scss,less}": [
"prettier --write"
]
}
}