-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
73 lines (73 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
{
"name": "alduin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:build": "tauri build",
"tauri:dev": "tauri dev",
"eslint": "eslint --ext .ts,.tsx src",
"eslint:fix": "eslint --fix --ext .ts,.tsx src",
"prettier": "prettier --check \"src/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"src/**/*.{ts,tsx}\"",
"check-types": "tsc --noEmit",
"test": "npm run eslint && npm run prettier && npm run check-types",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@lukeed/uuid": "^2.0.1",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-switch": "^1.0.3",
"@tanstack/react-query": "^4.32.6",
"@tauri-apps/api": "^1.4.0",
"clsx": "^1.2.1",
"immer": "^10.0.2",
"js-xxhash": "^2.0.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-router-dom": "^6.13.0",
"react-use": "^17.4.0",
"sanitize-html": "^2.11.0",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart#v1",
"tauri-plugin-sql-api": "github:tauri-apps/tauri-plugin-sql#v1",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@simbathesailor/use-what-changed": "^2.0.0",
"@tauri-apps/cli": "^1.4.0",
"@types/lodash": "^4.14.196",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/sanitize-html": "^2.9.0",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-zakodium": "^7.2.0",
"execa": "^7.1.1",
"husky": "^8.0.0",
"postcss": "^8.4.24",
"prettier": "2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.2.1"
}
}