forked from getrailsui/railsui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.09 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
{
"name": "railsui",
"version": "1.0.0",
"description": "A Rails engine with pre-built UI/UX using popular CSS frameworks",
"repository": "[email protected]:justalever/railsui.git",
"author": "Andy Leverenz <[email protected]>",
"private": true,
"dependencies": {
"@hotwired/stimulus": "^3.2.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.2",
"debounce": "^1.2.1",
"esbuild": "^0.17.16",
"highlight.js": "^11.6.0",
"postcss": "^8.4.8",
"postcss-import": "^15.1.0",
"stimulus-use": "^0.52.0",
"tailwindcss": "^3.3.1",
"tippy.js": "^6.3.7",
"vanilla-colorful": "^0.7.2"
},
"scripts": {
"build:css": "tailwindcss --postcss -i ./app/assets/stylesheets/railsui/application.tailwind.css -o ./app/assets/builds/railsui/application.css --minify",
"build:js": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds/railsui"
},
"devDependencies": {
"tailwind-scrollbar": "^3.0.4"
}
}