This repository has been archived by the owner on May 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
{
"name": "illa-agent",
"private": true,
"scripts": {
"dev": "turbo run dev --filter=agent",
"build": "NODE_OPTIONS=--max-old-space-size=12288 turbo run build --filter=agent",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"parser:tipis": "i18next"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^18.18.11",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint-config-illa": "workspace:*",
"husky": "^9.0.11",
"i18next-parser": "^8.13.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsconfig": "workspace:*",
"turbo": "latest",
"typescript": "^5.3.3",
"vite": "^5.2.10",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-svgr": "^4.2.0"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@illa-public/utils": "workspace:^",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1",
"i18next": "^23.11.2",
"antd": "^5.16.4",
"@ant-design/icons": "5.3.6",
"dayjs": "^1.11.10"
},
"browserslist": [
"last 3 Chrome versions",
"safari 13"
],
"pnpm": {
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"react-i18next": "$react-i18next",
"i18next": "$i18next",
"antd": "$antd",
"@ant-design/icons": "$@ant-design/icons",
"dayjs": "$dayjs",
"@emotion/react": "$@emotion/react",
"@emotion/styled": "$@emotion/styled"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}