-
-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.03 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"private": true,
"packageManager": "pnpm@10.4.1",
"dependencies": {
"@fontsource/lato": "^5.2.7",
"@fontsource/reenie-beanie": "^5.2.8",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo": "^8.0.20",
"@hotwired/turbo-rails": "^8.0.20",
"@rails/actioncable": "^8.1.100",
"@rails/activestorage": "^8.1.100",
"backbone": "1.0.0",
"bootstrap": "3.1.1",
"font-awesome": "4.7.0",
"jquery": "1.9.1",
"jquery-visible": "1.2.0",
"mousetrap": "1.4.6",
"underscore": "1.4.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/backbone": "latest",
"@types/hotwired__turbo": "^8.0.5",
"@types/jquery": "latest",
"@types/mousetrap": "latest",
"@types/node": "^25.2.3",
"@types/rails__actioncable": "^8.0.3",
"@types/underscore": "latest",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitest/coverage-v8": "4.0.18",
"esbuild": "^0.27.1",
"eslint": "^9.39.3",
"eslint-find-rules": "^5.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^17.0.0",
"jiti": "^2.6.1",
"jsdom": "^28.0.0",
"stylelint": "^17.3.0",
"stylelint-config-recess-order": "^7.6.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-selector-bem-pattern": "^4.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"scripts": {
"build": "bin/build",
"build:css": "bin/build_css",
"eslint": "eslint ./ --cache --max-warnings=0",
"eslint_find_unused_rules": "eslint-find-rules --unused --flatConfig --no-core eslint.config.ts",
"pretest": "pnpm tscheck && pnpm eslint",
"stylelint": "./node_modules/stylelint/bin/stylelint.mjs 'app/assets/stylesheets/**/*'",
"test": "pnpm vitest run --coverage",
"tscheck": "tsc --noEmit"
}
}