-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.94 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
{
"name": "tiger-data-app",
"packageManager": "yarn@4.3.1",
"browserslist": [
"defaults"
],
"devDependencies": {
"@vitest/coverage-v8": "^3.2.3",
"esbuild": "^0.27.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^10.8.0",
"jsdom": "^21.1.0",
"lint-staged": "^16.2.7",
"nanoid": ">=3.3.8",
"precommit-hook": "^3.0.0",
"prettier": "3.4.2",
"rollup": "^4.59.0",
"vite": "^6.4.2",
"vite-plugin-ruby": "^5.1.0",
"vitest": "^3.2.3",
"vue-eslint-parser": "^10.4.0"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@rails/actioncable": "^7.1.3",
"@rollup/plugin-inject": "^5.0.3",
"@vitejs/plugin-vue": "^5.2.1",
"bootstrap": "^5.2.3",
"brace-expansion": "^3.0.2",
"browserslist": "^4.21.5",
"datatables": "^1.10.18",
"datatables.net-dt": "^2.3.7",
"datatables.net-vue3": "^3.0.4",
"glob": "13.0.6",
"jquery": "^3.6.3",
"lux-design-system": "^7.3.2",
"minimatch": "10.2.3",
"nanoid": ">=3.3.8",
"vite-plugin-rails": "^0.5.0",
"vue": "^3.5.22",
"yarn": "^1.22.22",
"yarn.lock": "^0.0.1-security"
},
"scripts": {
"lint": "eslint 'app/javascript/**/*.js'",
"lint-staged": "lint-staged",
"test": "vitest run --coverage",
"test:dev": "vitest",
"validate": "npm ls",
"validate-license": "bundle exec rake dev_license:expiration_check"
},
"pre-commit": [
"validate-license",
"lint-staged"
],
"lint-staged": {
"app/*rb": "bundle exec rubocop -a",
"config/*rb": "bundle exec rubocop -a",
"lib/*rb": "bundle exec rubocop -a",
"lib/*rake": "bundle exec rubocop -a",
"spec/*rb": "bundle exec rubocop -a",
"*.js": "eslint --fix",
"*.md": "prettier --write",
"*css": "prettier --write",
"*js": "prettier --write",
"*.yml": "prettier --write"
}
}