-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 915 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 915 Bytes
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
{
"name": "redmine_dashboard",
"private": true,
"browserslist": [
"defaults and baseline widely available with downstream"
],
"devDependencies": {
"@types/bun": "latest",
"editorconfig-checker": "6.1.1",
"husky": "9.1.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
"stylelint": "17.11.1",
"stylelint-config-standard": "40.0.0",
"stylelint-no-unsupported-browser-features": "8.1.1"
},
"peerDependencies": {
"typescript": "^6.0.0"
},
"scripts": {
"format": "prettier --write .",
"lint:format": "prettier --check .",
"lint:css": "stylelint --allow-empty-input 'assets/**/*.css'",
"postinstall": "husky"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write",
"editorconfig-checker"
],
"*.rb": "bundle exec rubocop --force-exclusion --autocorrect",
"*.css": "stylelint --fix --allow-empty-input"
}
}