-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.09 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
33
34
{
"private": true,
"type": "module",
"engines": {
"node": "^18.12.0 || >= 20.0.0"
},
"dependencies": {
"bulma": "^1.0.2",
"sass": "^1.79.5"
},
"scripts": {
"build:css": "sass ./app/assets/stylesheets/application.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"lint:js": "eslint 'app/{assets,components,frontend,javascript}/**/*.{cjs,js,jsx,ts,tsx}'",
"fix:js": "npm run -- lint:js --fix",
"lint": "npm-run-all lint:**",
"fix": "npm-run-all fix:**",
"lint:css": "stylelint 'app/{components,frontend,assets/stylesheets}/**/*.css'",
"fix:css": "npm run -- lint:css --fix"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint": "^9.6.1",
"eslint": "^9",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-compact": "^8.40.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-strict-value": "^1.10.6",
"stylelint-prettier": "^5.0.2"
}
}