-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
{
"name": "chat",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "tsc && vite build --mode production",
"build:dev": "tsc && vite build --mode development",
"preview": "vite preview",
"tauri": "tauri",
"lint:fix": "eslint src/**/*.{js,ts,tsx} --fix",
"lint": "eslint --max-warnings=0",
"pre-check": "tsc && npx lint-staged",
"release": "standard-version",
"updateIconfont": "sh ./script/iconfont.sh",
"updateIcon": "npx @tauri-apps/tauricon",
"cm": "cz",
"ac": "git add . && cz"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.6",
"@tauri-apps/api": "^1.1.0",
"@tauri-apps/tauricon": "^1.0.3",
"antd": "^4.23.4",
"axios-retry": "^3.3.1",
"classnames": "^2.3.2",
"crypto-js": "^4.1.1",
"i18next": "^21.10.0",
"i18next-browser-languagedetector": "^6.1.8",
"lottie-web": "^5.9.6",
"postcss-px-to-viewport": "^1.1.1",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2",
"redux-persist": "^6.0.0",
"vite-plugin-eslint": "^1.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tauri-apps/cli": "^1.1.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.7.10",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-react": "^2.0.0",
"@zougt/vite-plugin-theme-preprocessor": "^1.4.5",
"axios": "^1.1.3",
"commitizen": "^4.2.5",
"cz-git": "^1.3.11",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"typescript": "^4.6.4",
"vite": "^3.0.2",
"vite-plugin-imp": "^2.3.0"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
}
}