-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.62 KB
/
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
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
{
"name": "allsearch_frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "vitest --environment happy-dom",
"lint": "eslint -c eslint.config.js",
"format": "prettier . --write",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@eslint/js": "^9.1.1",
"@honeybadger-io/js": "^6.5.1",
"@honeybadger-io/vue": "^6.1.7",
"axios": "^1.7.4",
"class-transformer": "^0.5.1",
"lux-design-system": "^5.8.1",
"typescript-eslint": "^7.8.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"eslint-plugin-vuejs-accessibility": "^2.3.0",
"happy-dom": "^15.10.2",
"lint-staged": "^15.2.2",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.0.2",
"vite": "^5.3.6",
"vitest": "^1.2.2",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.16"
},
"resolutions": {
"strip-ansi": "6.0.1"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*.{ts,js,vue}": [
"prettier --write",
"eslint"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
}
}