-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.78 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
{
"name": "ai-qa",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .vue,.js,.ts,.jsx,.tsx --fix",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write --list-different"
],
"*.{json,md,html,css,scss,sass,less,styl}": [
"prettier --write --list-different"
]
},
"dependencies": {
"@ant-design/cssinjs": "^1.18.4",
"@ant-design/icons": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"antd": "^5.14.1",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"file-saver": "^2.0.5",
"marked": "^12.0.1",
"marked-react": "^2.0.0",
"react": "^18",
"react-dom": "^18",
"react-router-dom": "^6.18.0",
"react-typist": "^2.0.5",
"vite": "^5.0.11",
"vite-plugin-eslint": "^1.8.1",
"zustand": "^4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "^18",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"html-docx-js-typescript": "^0.1.5",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}