-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "ant-chatgpt",
"type": "module",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build --mode production",
"build:preview": "tsc -b && vite build --mode preview",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"release": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@ant-design/x": "^1.0.5",
"ahooks": "^3.8.4",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"nanoid": "^5.0.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"use-immer": "^0.11.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@ant-design/icons": "^5.5.2",
"@antfu/eslint-config": "^3.12.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint-react/eslint-plugin": "^1.23.1",
"@eslint/js": "^9.17.0",
"@iconify/json": "^2.2.294",
"@testing-library/react": "^16.1.0",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/wicg-file-system-access": "^2023.10.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "2.1.8",
"antd": "^5.22.7",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0",
"unocss": "^0.65.3",
"vite": "^6.0.7",
"vite-bundle-analyzer": "^0.16.0",
"vite-plugin-compression": "^0.5.1",
"vitest": "^3.0.2"
},
"lint-staged": {
"src/**/*.{ts,js,jsx,tsx,vue}": [
"eslint --fix"
]
}
}