-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 932 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
27
28
29
{
"name": "app",
"private": true,
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets --loader:.tsx=tsx",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify"
},
"dependencies": {
"@hotwired/turbo-rails": "^8.0.12",
"@rails/actioncable": "^8.0.0",
"@reduxjs/toolkit": "^2.3.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"esbuild": "^0.24.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/rails__actioncable": "^6.1.11",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"typescript-eslint": "^8.15.0"
}
}