-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.74 KB
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
39
40
41
42
43
44
45
{
"name": "app",
"private": true,
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"build:css:compile": "sass ./app/assets/stylesheets/entrypoints:./app/assets/builds --no-source-map --load-path=node_modules",
"build:css:prefix": "postcss ./app/assets/builds/application.bootstrap.css ./app/assets/builds/fontawesome.css --use=autoprefixer --replace",
"build:css:fontawesome": "cp -r ./node_modules/@fortawesome/fontawesome-free/webfonts ./public/.",
"build:css": "yarn build:css:compile && yarn build:css:prefix && yarn build:css:fontawesome",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\""
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@antora/cli": "^3.1.0",
"@antora/lunr-extension": "^1.0.0-alpha.10",
"@antora/site-generator": "^3.1.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "7",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.4",
"@popperjs/core": "^2.11.8",
"@rails/actiontext": "^8.1.0",
"@shopify/draggable": "^1.1.3",
"@swobspace/stimulus-polymorphic-select": "https://github.com/swobspace/stimulus-polymorphic-select.git",
"@yaireo/tagify": "^4.35.1",
"autoprefixer": "^10.4.19",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"datatables.net-bs5": "^2.0.3",
"datatables.net-buttons-bs5": "^3.0.1",
"datatables.net-responsive-bs5": "^3.0.1",
"esbuild": "^0.28.0",
"jszip": "^3.10.1",
"nodemon": "^3.1.0",
"pdfmake": "^0.3.0",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"sass": "^1.72.0",
"tom-select": "^2.3.1",
"trix": "^2.1.0"
}
}