-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.8 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.8 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
{
"name": "titracka",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^7.0.0",
"@fullcalendar/bootstrap5": "^6.1.8",
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^6.1.8",
"@fullcalendar/interaction": "^6.1.8",
"@fullcalendar/multimonth": "^6.1.8",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.4",
"@popperjs/core": "^2.11.0",
"@rails/actiontext": "^8.0.0",
"@shopify/draggable": "^1.1.3",
"@swobspace/stimulus-polymorphic-select": "https://github.com/swobspace/stimulus-polymorphic-select.git",
"autoprefixer": "^10.4.19",
"bootstrap": "^5.1.3",
"datatables.net-bs5": "^2.0.3",
"datatables.net-buttons-bs5": "^3.0.1",
"datatables.net-responsive-bs5": "^3.0.1",
"esbuild": "^0.27.0",
"flatpickr": "^4.6.9",
"jszip": "^3.5.0",
"moment": "^2.29.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.2.2",
"trix": "^2.0.0"
},
"version": "0.1.0",
"devDependencies": {},
"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\""
}
}