-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "dep-tool",
"description": "Demo App with Routing built-in (recommended)",
"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/fastify/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adapter'",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"db:generate": "drizzle-kit generate",
"db:migrate": "cross-env DB_MIGRATING=true tsx ./src/db/migrate.ts",
"drizzle:studio": "drizzle-kit studio --host 127.0.0.1",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"lint:fix": "eslint --fix \"src/**/*.ts*\"",
"postinstall": "npm run db:generate && npm run db:migrate",
"preview": "qwik build preview && vite preview --open",
"serve": "node server/entry.fastify",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@auth/core": "^0.34.2",
"@builder.io/qwik": "^1.12.0",
"@builder.io/qwik-auth": "0.2.2",
"@builder.io/qwik-city": "^1.12.0",
"@types/eslint": "^8.56.12",
"@types/node": "^20.17.12",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.22.8",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-qwik": "^1.12.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "3.4.4",
"tsx": "^4.19.2",
"typescript": "5.5.3",
"undici": "^6.21.0",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@fastify/compress": "^7.0.3",
"@fastify/static": "^7.0.4",
"@fontsource/geist-sans": "^5.1.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^11.0.7",
"drizzle-orm": "^0.31.4",
"drizzle-zod": "^0.5.1",
"fast-glob": "^3.3.3",
"fastify": "^4.29.0",
"fastify-plugin": "^4.5.1",
"generate-api-key": "^1.0.2",
"mini-svg-data-uri": "^1.4.4",
"pino-roll": "^1.3.0",
"postgres": "^3.4.5",
"qwik-sonner": "^1.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.33.5",
"simple-git": "^3.27.0",
"slugify": "^1.6.6",
"tailwind-merge": "^2.6.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"yaml": "^2.7.0",
"zod": "^3.24.1"
}
}