-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.32 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
{
"private": true,
"packageManager": "pnpm@6.32.3",
"scripts": {
"build": "vite build",
"dev": "vite --port 4000 --open",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@sentry/vue": "^6.19.3",
"@supabase/supabase-js": "^1.33.2",
"@vueuse/core": "^8.2.3",
"@vueuse/sound": "^1.1.7",
"pinia": "^2.0.13",
"vue": "^3.2.31",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@crewbe/eslint-config-vue-ts": "^0.0.18",
"@iconify/json": "^2.1.23",
"@types/node": "^16.11.26",
"@unocss/reset": "^0.30.8",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/test-utils": "^2.0.0-rc.18",
"eslint": "^8.12.0",
"jsdom": "^19.0.0",
"naive-ui": "^2.27.0",
"pnpm": "^6.32.4",
"typescript": "^4.6.3",
"unocss": "^0.30.8",
"unplugin-auto-import": "^0.6.9",
"unplugin-vue-components": "^0.18.5",
"vite": "^2.9.1",
"vite-plugin-pages": "^0.22.0",
"vite-plugin-pwa": "^0.11.13",
"vitest": "^0.8.2",
"vue-tsc": "^0.33.9"
},
"eslintConfig": {
"extends": "@crewbe/eslint-config-vue-ts",
"rules": {
"vue/html-button-has-type": "off",
"vue/multi-word-component-names": "off",
"unicorn/no-null": "off"
}
}
}