-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.54 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
{
"name": "irida-next",
"private": true,
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@herb-tools/formatter": "^0.10.1",
"@herb-tools/linter": "^0.10.1",
"@hotwired/stimulus": "^3.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"axe-core": "^4.12.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"playwright": "1.60.0",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"vite": "^7.3.5",
"vitest": "^4.1.10"
},
"scripts": {
"herb:format": "herb-format",
"herb:format:check": "herb-format --check",
"herb:lint": "herb-lint",
"format": "pnpm run herb:format && prettier --write '**/*.{js,jsx,ts,tsx,css,json,md,yml,yaml}'",
"format:check": "pnpm run herb:format:check && prettier --check '**/*.{js,jsx,ts,tsx,css,json,md,yml,yaml}'",
"format:changed": "prettier --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:css:application": "pnpx @tailwindcss/cli -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify",
"build:css:admin": "node scripts/build-activeadmin-source.mjs && pnpx @tailwindcss/cli -i ./app/assets/stylesheets/active_admin.tailwind.css -o ./app/assets/builds/active_admin.css --minify",
"build:css": "pnpm run --filter . --stream --parallel \"/^build:css:.*/\"",
"dev:css:application": "pnpx @tailwindcss/cli -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify --watch",
"dev:css:admin": "node scripts/build-activeadmin-source.mjs && pnpx @tailwindcss/cli -i ./app/assets/stylesheets/active_admin.tailwind.css -o ./app/assets/builds/active_admin.css --minify --watch",
"dev:css": "pnpm run --filter . --stream --parallel \"/^dev:css:.*/\"",
"test:js": "vitest run",
"test:js:watch": "vitest"
},
"dependencies": {
"@activeadmin/activeadmin": "4.0.0-beta22",
"@tailwindcss/cli": "4.3.2",
"@tailwindcss/forms": "^0.5.11",
"flowbite": "^3.1.2",
"tailwindcss": "4.3.2"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"pnpm": {
"overrides": {
"esbuild@>=0.27.3 <0.28.1": ">=0.28.1",
"postcss@<8.5.10": ">=8.5.10",
"undici@>=7.0.0 <7.28.0": ">=7.28.0",
"vite@>=7.0.0 <=7.3.4": ">=7.3.5"
}
}
}