-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.47 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
83
84
85
86
{
"name": "konachan-front",
"version": "1.0.0",
"description": "",
"scripts": {
"dev:web": "vite --mode web",
"dev:safe": "vite --mode safe",
"dev:tauri": "vite --mode tauri",
"build:web": "vite build --mode web",
"build:safe": "vite build --mode safe",
"build:tauri": "vite build --mode tauri",
"preview:web": "vite preview --mode web",
"preview:safe": "vite preview --mode safe",
"preview:tauri": "vite preview --mode tauri",
"prepare": "husky install",
"lint": "eslint --fix --ext .tsx,.ts src",
"prettier": "prettier --write src",
"type-check": "vue-tsc --noEmit"
},
"lint-staged": {
"*.tsx": "prettier --write",
"*.ts": "prettier --write"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@testing-library/react": "^14.0.0",
"@types/mousetrap": "^1.6.11",
"@types/node": "^20.5.9",
"@types/ramda": "^0.29.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.6",
"@types/recoil": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.0.4",
"browserslist": "^4.21.10",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.29",
"postcss-assets": "^6.0.0",
"postcss-color-function": "^4.1.0",
"postcss-import": "^15.1.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.1.3",
"prettier": "^3.0.3",
"react-refresh": "^0.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-file-mock": "^0.2.5",
"vite-plugin-html-config": "^1.0.11",
"vite-plugin-pwa": "^0.16.4"
},
"dependencies": {
"@tauri-apps/api": "^1.4.0",
"axios": "^1.5.0",
"better-react-spinkit": "^2.0.4",
"color.js": "^1.2.0",
"mousetrap": "^1.6.5",
"ramda": "^0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-perfect-scrollbar": "^1.5.8",
"react-toastify": "^9.1.3",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"recoil": "^0.7.7",
"rxjs": "^7.8.1",
"vite-plugin-checker": "^0.6.2",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
}
}