-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 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
35
{
"name": "app",
"dependencies": {
"@hotwired/turbo-rails": "^7.2.2",
"@rails/activestorage": "^7.0.4",
"@selectize/selectize": "^0.14.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@yaireo/tagify": "^4.16.4",
"esbuild": "^0.15.7",
"esbuild-plugin-replace": "^1.2.0",
"flowbite": "^1.5.3",
"jquery": "^3.6.1",
"postcss-cli": "^10.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.8.2",
"sass": "^1.54.9",
"sifter": "^0.0.5",
"tailwindcss": "^3.1.8"
},
"browserslist": [
"defaults"
],
"scripts": {
"build:css": "tailwindcss --postcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify",
"build": "esbuild app/javascript/*.* --bundle --minify --sourcemap --outdir=app/assets/builds --public-path=assets"
},
"devDependencies": {
"autoprefixer": "^10.4.11",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"postcss-nested": "^5.0.6"
}
}