-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "clickncook-supabase",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "run-p type-check build-only",
"build-only": "vite build",
"dev": "vite",
"format": "prettier --write src/",
"format-check": "prettier --check src/",
"generate-types": "npx supabase gen types typescript --local > ./src/types/schema.ts",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:unit": "vitest",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
},
"dependencies": {
"@sentry/vite-plugin": "^2.21.1",
"@supabase/supabase-js": "^2.39.8",
"@vueuse/core": "^10.7.2",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.309.0",
"pinia": "^2.1.7",
"radix-vue": "^1.9.3",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.3.13",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"@rushstack/eslint-patch": "^1.6.1",
"@sentry/vue": "^8.22.0",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"jsdom": "^23.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"supabase": "^1.148.6",
"tailwindcss": "^3.4.0",
"typescript": "5.3.3",
"vite": "^5.0.10",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.6.0",
"vue-tsc": "^1.8.25"
}
}