-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "app",
"private": true,
"devDependencies": {
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/http-link-header": "^1.0.7",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.4",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/testing-library__dom": "^7.5.0",
"@types/testing-library__react": "^10.2.0",
"@vitejs/plugin-react-swc": "3.3.2",
"esbuild": "^0.23.1",
"jsdom": "22.1.0",
"sass": "^1.79.4",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-full-reload": "^1.2.0",
"vite-plugin-ruby": "^5.1.0",
"vite-plugin-stimulus-hmr": "^3.0.0",
"vitest": "^2.1.8",
"redux-mock-store": "^1.5.4"
},
"scripts": {
"build": "esbuild app/javascript/entrypoints/App.tsx --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"build:css": "tailwindcss -i ./app/javascript/entrypoints/application.css -o ./app/assets/builds/application.css --minify",
"ts-check": "tsc --project tsconfig.json --noEmit --watch --preserveWatchOutput",
"dev": "bin/vite dev",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.5",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.2.1",
"@reduxjs/toolkit": "^2.2.7",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/leaflet": "^1.9.15",
"@types/react-leaflet": "^3.0.0",
"@types/redux-mock-store": "^1.5.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"http-link-header": "^1.1.3",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"path": "^0.12.7",
"postcss": "^8.4.45",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.1",
"tailwindcss": "^3.4.13"
}
}