-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.03 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
{
"type": "module",
"scripts": {
"dev": "concurrently \"shadow-cljs -A:frontend watch frontend\" \"npm run tailwind\"",
"build": "npm run clean && shadow-cljs -A:frontend release frontend && npm run tailwind:release",
"tailwind": "postcss src/leihs/inventory/client/main.css -o resources/public/inventory/assets/css/style.css --verbose -w",
"tailwind:release": "NODE_ENV=production postcss src/leihs/inventory/client/main.css -o resources/public/inventory/assets/css/style.css",
"start:libs": "mkdir -p dev/gen && touch dev/gen/libs.js && node watch.mjs",
"build:libs": "node build.mjs",
"clean": "rm -rf resources/public/inventory/assets/js/* resources/public/inventory/assets/css/style.css",
"format": "prettier --write ./src/leihs/inventory/client",
"format:check": "prettier --check ./src/leihs/inventory/client",
"test": "DB_NAME=leihs_test LEIHS_INVENTORY_HTTP_PORT=5173 bin/rspec ./spec/features/"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@types/node": "^22.5.4",
"autoprefixer": "^10.4.14",
"concurrently": "^9.0.1",
"esbuild": "0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.3.0",
"i18next-locales-sync": "^2.1.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "3.2.5",
"react-refresh": "^0.14.2",
"shadow-cljs": "2.26.3",
"tailwindcss": "^3.3.1"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^5.21.7",
"body-parser": "^1.20.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cssnano": "^7.0.6",
"date-fns": "^3.6.0",
"i18next": "^23.11.3",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.5.1",
"lucide-react": "^0.359.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.53.0",
"react-i18next": "^14.1.1",
"react-intersection-observer": "^9.13.1",
"react-router-dom": "^6.22.3",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"translate": "^3.0.0",
"translation-check": "^1.1.0",
"truncate": "^3.0.0",
"zod": "^3.23.8"
}
}