-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 992 Bytes
/
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
{
"name": "untitled",
"private": true,
"type": "module",
"scripts": {
"fix:css": "rustywind --custom-regex '@apply ([_a-zA.-Z0-9-:\\[\\] ]+);' --write ./app/assets/stylesheets/**/*",
"fix:html": "rustywind --write app/views",
"lint": "eslint app/javascript config spec/javascripts",
"lint:css": "stylelint app/assets/stylesheets/**/*.css",
"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"
},
"devDependencies": {
"@hotwired/stimulus": "3.2.2",
"@stylistic/eslint-plugin-js": "2.12.1",
"c8": "10.1.3",
"chai": "5.1.2",
"eslint": "9.17.0",
"jsdom": "25.0.1",
"mocha": "11.0.1",
"sinon": "19.0.2",
"sinon-chai": "4.0.0",
"stylelint": "16.11.0",
"stylelint-config-standard": "36.0.1"
},
"engines": {
"node": "22.12.0"
},
"packageManager": "[email protected]"
}