-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "my-qwik-basic-starter",
"description": "Recommended for your first Qwik app",
"engines": {
"node": ">=18.0.0"
},
"private": true,
"license": "MIT",
"scripts": {
"-------BUILD-------": "",
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"-------DEV-------": "",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"-------LINT-------": "",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"fmt.tsc": "tsc --noEmit",
"lint": "eslint src --ext \".js,.ts,.tsx\" --fix",
"-------PREVIEW-------": "",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"-------CODEGEN-------": "",
"postinstall": "prisma generate"
},
"devDependencies": {
"@builder.io/qwik": "1.2.10",
"@builder.io/qwik-city": "1.2.10",
"@types/cookie": "0.5.2",
"@types/eslint": "8.44.2",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"autoprefixer": "10.4.15",
"eslint": "8.45.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-qwik": "1.2.10",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-tailwindcss": "3.13.0",
"node-fetch": "3.3.2",
"postcss": "8.4.29",
"prettier": "3.0.3",
"prisma": "5.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0"
},
"dependencies": {
"@prisma/client": "5.2.0",
"@supabase/supabase-js": "2.33.1",
"@trpc/client": "10.38.1",
"@trpc/server": "10.38.1",
"cookie": "0.5.0",
"daisyui": "3.7.3",
"superjson": "1.13.1",
"undici": "5.23.0"
}
}