forked from Probesys/bileto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
31
32
{
"name": "bileto",
"license": "AGPL-3.0-or-later",
"repository": "github:Probesys/bileto",
"scripts": {
"watch": "vite build --config .vite/vite.config.js --mode development --watch",
"build": "vite build --config .vite/vite.config.js --mode production",
"build:icons": "svg-sprite --config .svg-sprite.json assets/icons/*.svg",
"lint-js": "eslint assets/javascripts/",
"lint-js-fix": "eslint --fix assets/javascripts/",
"lint-css": "stylelint assets/stylesheets/**/*.css",
"lint-css-fix": "stylelint --fix assets/stylesheets/**/*.css"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"autoprefixer": "^10.4.15",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"stylelint": "^15.6.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.0",
"stylelint-stylistic": "^0.4.0",
"svg-sprite": "^2.0.1",
"vite": "^4.0.0"
},
"dependencies": {
"@hotwired/stimulus": "^3.1.0",
"@hotwired/turbo": "^7.2.2"
}
}