-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@rollup/plugin-replace": "^5.0.7",
"@types/node": "^22.8.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.1",
"antd-style": "^3.7.1",
"autoprefixer": "^10.4.19",
"classnames": "^2.5.1",
"cross-env": "^7.0.3",
"dayjs": "^1.11.11",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^9.0.11",
"lerna": "^8.1.3",
"lint-staged": "^15.2.7",
"postcss": "^8.1.0",
"prettier": "^3.3.2",
"reset.css": "^2.0.2",
"stylus": "^0.64.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-svg-icons": "^2.0.1"
},
"scripts": {
"base": "lerna run --scope main",
"dev": "npm run base -- dev",
"dev:prod": "npm run base -- dev:prod",
"build": "npm run base -- build",
"build:testing": "npm run base -- build:testing",
"build:production": "npm run base -- build:production",
"clean": "lerna run clean && rm -rf node_modules",
"prettier": "prettier --log-level warn --write '**/*.{ts,tsx,js,jsx,json,md}'"
},
"dependencies": {
"antd": "^5.21.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"recoil": "^0.7.7"
}
}