-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 1.53 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "teamfight-simulator",
"version": "0.1.0",
"type": "module",
"license": "ISC",
"engines": {
"node": ">=18",
"pnpm": ">=6"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite build && vite preview",
"lint": "eslint './**/*.{ts,vue}' && vue-tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage && open coverage/index.html"
},
"dependencies": {
"@tacticians-academy/academy-library": "^0.33.0",
"@tailwindcss/forms": "^0.5.7",
"@vitejs/plugin-vue": "^5.0.4",
"tailwindcss": "^3.4.1",
"vite": "^5.1.5",
"vite-tsconfig-paths": "^4.3.1",
"vue": "^3.4.21"
},
"devDependencies": {
"@ky-is/eslint-config": "^2.5.1",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"happy-dom": "^13.7.1",
"postcss": "^8.4.35",
"typescript": "^5.4.2",
"vitest": "^1.3.1",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.6"
},
"eslintConfig": {
"extends": "@ky-is/eslint-config/vue-typescript",
"rules": {
"@typescript-eslint/strict-boolean-expressions": [
"warn",
{
"allowNullableEnum": true
}
],
"vue/component-tags-order": [
"error",
{
"order": [
[
"script",
"template"
],
"style"
]
}
],
"vue/no-v-html": "off"
}
},
"postcss": {
"plugins": {
"tailwindcss/nesting": {},
"tailwindcss": {
"config": "tailwind.config.ts"
}
}
}
}