-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 1.21 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
{
"name": "Flus",
"license": "AGPL-3.0-or-later",
"repository": "github:flusio/Flus",
"type": "module",
"scripts": {
"watch": "esbuild --bundle --loader:.woff=file --loader:.woff2=file --loader:.svg=file --sourcemap --outdir=public/dev_assets --watch=forever src/assets/*/application.*",
"build": "esbuild --bundle --loader:.woff=file --loader:.woff2=file --loader:.svg=file --sourcemap --outdir=public/assets --minify src/assets/*/application.*",
"build:icons": "svg-sprite --symbol --symbol-dest=. --symbol-sprite=icons.svg --dest=public/static src/assets/icons/*",
"lint-js": "eslint -c .eslint.config.js src/assets/javascripts/",
"lint-js-fix": "eslint -c .eslint.config.js --fix src/assets/javascripts/",
"lint-css": "stylelint src/assets/stylesheets/**/*.css",
"lint-css-fix": "stylelint --fix src/assets/stylesheets/**/*.css"
},
"devDependencies": {
"@stylistic/stylelint-plugin": "^2",
"esbuild": "0.24.0",
"eslint": "^9.4.0",
"globals": "^15.4.0",
"stylelint": "^16",
"stylelint-config-standard": "^36",
"stylelint-order": "^6.0.0",
"svg-sprite": "^2.0.0"
},
"dependencies": {
"@hotwired/stimulus": "^3.1.0",
"@hotwired/turbo": "^8"
}
}