forked from zluo01/edex-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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": "edex",
"version": "0.1.0",
"private": true,
"scripts": {
"vite-dev": "vite",
"vite-build": "tsc && vite build",
"tauri": "tauri",
"dev": "tauri dev",
"build": "tauri build",
"build-debug": "tauri build --debug",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "1.7.18",
"@tauri-apps/api": "1.5.3",
"augmented-ui": "1.1.2",
"color": "4.2.3",
"lodash": "4.17.21",
"pretty-bytes": "6.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-window": "1.8.10",
"smoothie": "1.36.1",
"swr": "2.2.4",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1",
"xterm": "5.3.0",
"xterm-addon-fit": "0.8.0",
"xterm-addon-unicode11": "0.6.0",
"xterm-addon-web-links": "0.9.0"
},
"devDependencies": {
"@tauri-apps/cli": "1.5.9",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/color": "3.0.6",
"@types/lodash": "4.14.202",
"@types/node": "20.11.16",
"@types/react": "18.2.52",
"@types/react-dom": "18.2.18",
"@types/react-window": "1.8.8",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@vitejs/plugin-react-swc": "3.6.0",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tailwindcss": "3.14.1",
"husky": "8.0.3",
"lint-staged": "15.2.1",
"postcss": "8.4.33",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.11",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"vite": "5.0.12",
"vite-tsconfig-paths": "4.3.1"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"npm run lint",
"npm run format"
],
"*.{js,css,md}": "prettier --write"
}
}