-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "my-qwik-empty-starter",
"description": "App with Routing built-in ready to create your 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.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 .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"serve": "wrangler pages dev ./dist",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.2.6",
"@builder.io/qwik-city": "^1.2.6",
"@iconify-json/lucide": "^1.1.113",
"@netlify/edge-functions": "^2.0.0",
"@svgx/core": "^1.0.1",
"@types/eslint": "8.40.2",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.4.0",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"autoprefixer": "^10.4.14",
"eslint": "8.44.0",
"eslint-plugin-qwik": "^1.2.6",
"netlify-cli": "^15.0.0",
"postcss": "^8.4.23",
"prettier": "2.8.8",
"tailwindcss": "^3.3.1",
"typescript": "5.1.6",
"undici": "5.22.1",
"unplugin-icons": "^0.16.5",
"vercel": "^29.1.1",
"vite": "4.4.0",
"vite-tsconfig-paths": "4.2.0",
"wrangler": "^3.0.0"
},
"dependencies": {
"@fontsource/be-vietnam-pro": "^5.0.7",
"@iconify-json/ic": "^1.1.13",
"@qwikest/icons": "^0.0.8",
"@unpic/qwik": "^0.0.24",
"contentful": "^10.4.0",
"dayjs": "^1.11.9",
"gray-matter": "^4.0.3",
"lucide": "^0.263.0",
"lucide-qwik": "^1.0.0",
"nprogress": "^0.2.0"
}
}