forked from bullet-train-co/bullet_train
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.48 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
36
37
38
{
"name": "app",
"private": "true",
"dependencies": {
"@bullet-train/bullet-train": "^0.2.4",
"@bullet-train/bullet-train-sortable": "^0.1.2",
"@bullet-train/fields": "^0.1.2",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@fullhuman/postcss-purgecss": "3.0.0",
"@hotwired/turbo-rails": "^7.1.1",
"@icon/themify-icons": "^1.0.1-alpha.3",
"@rails/actioncable": "^7.0.0",
"@rails/actiontext": "^7.0.0",
"@rails/activestorage": "^7.0.0",
"@rails/ujs": "^7.0.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.2",
"cable_ready": "^5.0.0-pre8",
"dragula": "^3.7.3",
"esbuild": "^0.14.23",
"glob": "^7.2.0",
"jquery": "^3.5.1",
"jstz": "^2.1.1",
"postcss": "^8.4.6",
"postcss-extend-rule": "^4.0.0",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"stimulus-reveal": "^1.2.12",
"tailwindcss": "^3.0.23"
},
"scripts": {
"build": "node esbuild.config.js",
"build:css": "bundle exec rake bt:link; yarn light:build; yarn light:build:css",
"light:build": "esbuild `bundle exec bin/theme javascript light` --bundle --sourcemap --outdir=app/assets/builds --loader:.png=file --loader:.jpg=file",
"light:build:css": "NODE_PATH=./node_modules tailwindcss -c `bundle exec bin/theme tailwind-config light` -i `bundle exec bin/theme tailwind-stylesheet light` -o ./app/assets/builds/application.light.css --postcss ./postcss.config.js"
}
}