-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1 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
{
"name": "app",
"private": true,
"type": "module",
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.4",
"@types/react": "^18.3.3",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"esbuild": "^0.21.4",
"postcss": "^8.4.38",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"remount": "^1.0.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@prettier/plugin-ruby": "^4.0.4",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.3.1",
"react-test-renderer": "^18.3.1"
}
}