-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 838 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "app",
"private": true,
"dependencies": {
"@hotwired/stimulus": "^3.1.0",
"@hotwired/turbo-rails": "^7.1.3",
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.12",
"bootstrap": "^5.3.0",
"esbuild": "^0.15.3",
"postcss": "^8.4.18",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"sass": "^1.53.0"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets --loader:.js=jsx",
"build:css": "postcss ./app/assets/stylesheets/application.css --use autoprefixer --output ./app/assets/builds/application.css",
"watch": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets --loader:.js=jsx --watch",
"start": "foreman start"
}
}