forked from wmalarski/qwik-trpc-supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2 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": "my-qwik-basic-starter",
"description": "Recommended for your first Qwik app",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\" --fix",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"postinstall": "prisma generate"
},
"devDependencies": {
"@builder.io/qwik": "0.9.0",
"@builder.io/qwik-city": "0.0.111",
"@types/cookie": "^0.5.1",
"@types/eslint": "8.4.6",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"autoprefixer": "^10.4.12",
"eslint": "8.24.0",
"eslint-plugin-qwik": "0.9.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-tailwindcss": "^3.6.2",
"node-fetch": "3.2.10",
"postcss": "^8.4.17",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.4.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.4",
"vite": "3.1.4",
"vite-tsconfig-paths": "3.5.1"
},
"dependencies": {
"@prisma/client": "4.4.0",
"@supabase/supabase-js": "^1.35.7",
"@trpc/client": "^10.0.0-proxy-beta.10",
"@trpc/server": "^10.0.0-proxy-beta.10",
"cookie": "^0.5.0",
"daisyui": "^2.31.0",
"superjson": "^1.10.0",
"zod": "^3.19.1"
}
}