-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 933 Bytes
/
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
{
"name": "app",
"private": true,
"devDependencies": {
"esbuild": "^0.23.0",
"tailwindcss": "^3.4.10"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --splitting --chunk-names=[name]-[hash].digested --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets --loader:.jpg=file --loader:.webp=file --loader:.png=file --asset-names=[name]-[hash].digested",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.5",
"@tailwindcss/forms": "^0.5.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"chart.js": "^4.4.6",
"lodash": "^4.17.21",
"postcss": "^8.4.41",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}