-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
{
"name": "@techmely/team",
"description": "Techmely Team Portfolio",
"engines": {
"node": ">=18.0.0"
},
"private": true,
"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 --port 3000",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"test.e2e": "playwright test",
"test.unit": "vitest components",
"test.unit.ui": "vitest --ui components",
"qwik": "qwik",
"migration-latest": "bun scripts/migrate-db.ts dev latest",
"migration-down": "bun scripts/migrate-db.ts dev down"
},
"dependencies": {
"@planetscale/database": "1.11.0",
"@swup/gtm-plugin": "2.0.0",
"@techmely/reset-css": "^1.0.0",
"@techmely/utils": "1.9.1",
"gsap": "3.12.2",
"kysely": "0.26.3",
"kysely-planetscale": "1.4.0",
"swup": "4.4.2",
"valibot": "0.19.0"
},
"devDependencies": {
"@builder.io/partytown": "0.8.1",
"@builder.io/qwik": "1.2.13",
"@builder.io/qwik-city": "1.2.13",
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.6",
"dotenv": "16.3.1",
"kysely-codegen": "0.11.0",
"rome": "12.1.3",
"typescript": "5.2.2",
"vercel": "32.4.1",
"vite": "4.4.11",
"vite-plugin-lightningcss": "0.0.5",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6",
"unocss": "0.56.5",
"unocss-preset-scrollbar": "0.3.0",
"@unocss/vite": "0.56.5"
},
"trustedDependencies": ["sharp"]
}