-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.82 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "qwik-example-app",
"description": "An example project for Auth.js with Qwik",
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
"private": true,
"trustedDependencies": [
"sharp"
],
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
"type": "module",
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/vercel-edge/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "vercel deploy",
"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*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@auth/qwik": "latest",
"@builder.io/qwik": "^1.19.1",
"@builder.io/qwik-city": "^1.19.2",
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.57.0",
"eslint-plugin-qwik": "^1.19.1",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "3.3.3",
"typescript": "5.4.5",
"undici": "^6.24.0",
"vercel": "^54.0.0",
"vite": "^6.4.2",
"vite-tsconfig-paths": "^4.2.1"
},
"pnpm": {
"overrides": {
"@babel/plugin-transform-modules-systemjs@7": "7.29.4",
"@builder.io/qwik-city@1": "1.19.2",
"@builder.io/qwik@1": "1.19.1",
"@remix-run/router@1": "1.23.2",
"@remix-run/server-runtime@2": "2.17.3",
"@tootallnate/once@2": "2.0.1",
"cookie@0": "0.7.0",
"diff@5": "5.2.2",
"esbuild@0": "0.25.0",
"estree-util-value-to-estree@3": "3.3.3",
"flatted@3": "3.4.2",
"form-data@3": "3.0.4",
"glob@10": "10.5.0",
"ip-address@10": "10.1.1",
"js-yaml@4": "4.1.1",
"lodash@4": "4.18.0",
"mdast-util-to-hast@13": "13.2.1",
"minimatch@3": "3.1.3",
"minimatch@9": "9.0.7",
"path-to-regexp@0": "0.1.13",
"picomatch@2": "2.3.2",
"picomatch@4": "4.0.4",
"qs@6": "6.15.2",
"rollup@4": "4.59.0",
"svgo@3": "3.3.3",
"tar-fs@2": "2.1.4",
"tar@7": "7.5.11",
"tmp@0": "0.2.6",
"undici@7": "7.24.0",
"vite@5": "6.4.2",
"vite@6": "6.4.2",
"vm2@3": "3.11.4",
"ws@8": "8.20.1",
"postcss@8": "8.5.10",
"undici@5": "6.24.0",
"ip-address@9": "10.1.1"
}
}
}