-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "complete-poc",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier:fix": "prettier --write src",
"eslint:fix": "eslint src --ext ts,tsx,js,jsx --fix",
"fix": "pnpm prettier:fix && pnpm eslint:fix",
"prettier:lint": "prettier --check src",
"eslint:lint": "eslint src --ext ts,tsx,js,jsx --max-warnings 0",
"lint": "pnpm prettier:lint && pnpm tsc && pnpm eslint:lint",
"pre-commit": "pnpm fix && pnpm lint && pnpm build",
"tauri": "tauri"
},
"dependencies": {
"@floating-ui/react": "^0.26.19",
"@hookform/resolvers": "^3.9.0",
"@mantine/core": "^7.11.2",
"@mantine/hooks": "^7.11.2",
"@mantine/modals": "^7.11.2",
"@mantine/notifications": "^7.11.2",
"@tanstack/react-router": "^1.45.0",
"@tauri-apps/api": "^1",
"@types/lodash-es": "^4.17.12",
"clsx": "^2.1.1",
"lodash-es": "^4.17.21",
"radash": "^12.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"rxjs": "^7.8.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tauri-apps/cli": "^1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"typescript": "^5.2.2",
"vite": "^5.3.3"
}
}