-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 981 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
30
31
32
33
{
"name": "happi",
"private": true,
"engines": {
"node": "~> 16"
},
"dependencies": {
"@hotwired/stimulus": "^3.0.0",
"@hotwired/turbo-rails": "^7.0.1",
"@rails/actioncable": "^6.0.0",
"@rails/actiontext": "^6.1.3",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.3.6",
"esbuild": "^0.13.3",
"postcss": "^8.3.8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"stimulus-use": "^0.50.0-2",
"tailwindcss": "^2.2.16",
"trix": "^1.2.0"
},
"version": "0.1.0",
"devDependencies": {},
"scripts": {
"build:css": "tailwindcss --postcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css",
"build": "esbuild app/javascript/*.* --bundle --outdir=app/assets/builds"
}
}