-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.31 KB
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
{
"name": "ocpp-cp-simulator",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"cli": "bun src/cli/main.ts"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2.7.0",
"@voltbras/ts-ocpp": "^2.7.3",
"@xyflow/react": "^12.9.0",
"eventemitter2": "^6.4.9",
"flowbite": "^3.1.2",
"flowbite-react": "^0.12.10",
"jotai": "^2.12.5",
"jotai-location": "^0.5.5",
"jotai-zustand": "^0.4.0",
"lucide-react": "^0.552.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-robot": "^1.2.0",
"react-router-dom": "^6.30.1",
"robot3": "^1.2.0",
"zustand": "^4.5.7"
},
"devDependencies": {
"@tauri-apps/cli": "^2.7.0",
"@types/bun": "^1.3.9",
"@types/eventemitter2": "^2.2.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.20",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"postcss": "^8.5.6",
"prettier": "3.3.3",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md,json}": "prettier --write",
"*.{ts,tsx}": "eslint --cache --fix"
}
}