-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.19 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.19 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
{
"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.*",
"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": {
"@eslint/js": "^10.0.1",
"@stylistic/stylelint-plugin": "^5",
"esbuild": "0.27.3",
"eslint": "^10.0.0",
"globals": "^17",
"stylelint": "^17",
"stylelint-config-standard": "^40",
"stylelint-order": "^7.0.0",
"svg-sprite": "^2.0.0"
},
"dependencies": {
"@flus/design": "^1.0.0",
"@hotwired/stimulus": "^3.1.0",
"@hotwired/turbo": "^8",
"stringz": "^2.1.0",
"twitter-text": "^3.1.0"
}
}