forked from MiningCattiva/x-spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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
{
"name": "x-spider",
"private": true,
"version": "2.2.2",
"type": "module",
"packageManager": "[email protected]",
"license": "GPL-3.0-only",
"scripts": {
"start": "tauri dev",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "prettier --write ./src/**/*.{ts,tsx,js,jsx,cjs} && eslint --fix ./src/**/*.{ts,tsx,js,jsx,cjs}",
"prepare": "husky install",
"build:icons": "tauri icon ./src-tauri/icons/icon.png",
"typeCheck": "tsc --noEmit",
"precommit": "lint-staged && npm run typeCheck"
},
"lint-staged": {
"./src/**/*.{ts,tsx,js,jsx,cjs}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@ant-design/icons": "^5.3.6",
"@tauri-apps/api": "^1.5.3",
"ahooks": "^3.7.11",
"antd": "^5.16.2",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"immer": "^10.0.4",
"joi": "^17.12.3",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.7",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window": "^1.8.10",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@tauri-apps/cli": "^1.5.11",
"@types/lodash-es": "^4.17.12",
"@types/ramda": "^0.29.12",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.9"
}
}