-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.16 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
33
34
35
36
37
38
39
40
41
42
{
"name": "redmine_dashboard",
"private": true,
"browserslist": [
"defaults and baseline widely available with downstream"
],
"devDependencies": {
"@herb-tools/formatter": "0.10.1",
"@herb-tools/linter": "0.10.1",
"@types/bun": "latest",
"editorconfig-checker": "6.1.1",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"prettier": "3.9.4",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0",
"stylelint-no-unsupported-browser-features": "8.1.1"
},
"peerDependencies": {
"typescript": "^6.0.0"
},
"scripts": {
"format": "prettier --write .",
"format:erb": "bundle exec herb format app/views",
"lint:format": "prettier --check .",
"lint:css": "stylelint --allow-empty-input 'assets/**/*.css'",
"lint:erb": "bundle exec herb lint app/views",
"postinstall": "husky"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write",
"editorconfig-checker"
],
"*.rb": "bundle exec rubocop --force-exclusion --autocorrect",
"*.erb": [
"bundle exec herb format",
"bundle exec herb lint --fix"
],
"*.css": "stylelint --fix --allow-empty-input"
}
}