-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 949 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 949 Bytes
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
{
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint:js": "biome check --write --unsafe ./app/frontend ./test",
"format:js": "biome format --write ./app/frontend ./test",
"check:js": "biome check ./app/frontend ./test"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"jsdom": "^27.4.0",
"rollup": "^4.0.0",
"vite": "^5.4.21",
"vite-plugin-rails": "^0.1.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo": "^8.0.20",
"@tailwindcss/vite": "^4.1.16",
"chart.js": "^4.5.1",
"chartjs-chart-treemap": "^3.1.0",
"sortablejs": "^1.15.7",
"tailwindcss": "^4.1.16"
}
}