-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.15 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
{
"name": "bileto",
"license": "AGPL-3.0-or-later",
"repository": "github:Probesys/bileto",
"type": "module",
"scripts": {
"watch": "esbuild --bundle --loader:.woff2=file --loader:.svg=file --sourcemap --outdir=public/dev_assets --watch=forever assets/*/application.*",
"build": "esbuild --bundle --loader:.woff2=file --loader:.svg=file --sourcemap --outdir=public/assets --minify assets/*/application.*",
"build:icons": "svg-sprite --config .svg-sprite.json assets/icons/*.svg",
"lint-js": "eslint -c .eslint.config.js assets/javascripts/",
"lint-js-fix": "eslint -c .eslint.config.js --fix assets/javascripts/",
"lint-css": "stylelint assets/stylesheets/**/*.css",
"lint-css-fix": "stylelint --fix assets/stylesheets/**/*.css"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@stylistic/stylelint-plugin": "^3.0.0",
"esbuild": "0.24.0",
"eslint": "^9.2.0",
"globals": "^15.1.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.0",
"svg-sprite": "^2.0.1"
},
"dependencies": {
"@hotwired/stimulus": "^3.1.0",
"@hotwired/turbo": "^8.0.4"
}
}