-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 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
{
"name": "untitled",
"private": true,
"type": "module",
"scripts": {
"check:erb": "herb-format --check .",
"fix:css": "prettier --write app/assets/tailwind/**/*.css",
"fix:erb": "herb-format .",
"fix:js": "eslint --fix .",
"lint:css": "stylelint app/assets/tailwind/**/*.css",
"lint:js": "eslint .",
"lint:erb": "herb-lint --format detailed --no-timing",
"outdated": "yarn upgrade-interactive",
"test": "bin/mocha spec/javascripts",
"test:coverage": "c8 --100 --clean --report-dir tmp/ --reporter text-summary --skip-full bin/mocha spec/javascripts"
},
"engines": {
"node": "24.18.0"
},
"packageManager": "yarn@4.17.1",
"devDependencies": {
"@eslint/js": "10.0.1",
"@herb-tools/formatter": "0.10.2",
"@herb-tools/linter": "0.10.2",
"@hotwired/stimulus": "3.2.2",
"@stylistic/eslint-plugin": "5.10.0",
"c8": "11.0.0",
"chai": "6.2.2",
"eslint": "10.7.0",
"jsdom": "29.1.1",
"mocha": "11.7.6",
"prettier": "3.9.5",
"prettier-plugin-tailwindcss": "0.8.0",
"sinon": "22.0.0",
"sinon-chai": "4.0.1",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0"
}
}