-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"name": "my-qwik-empty-starter",
"description": "App with Routing built-in ready to create your app",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"trustedDependencies": [
"sharp"
],
"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.server.bun": "vite build -c adapters/bun/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",
"serve": "bun server/entry.bun.js",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.3.0",
"@builder.io/qwik-city": "^1.3.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@types/eslint": "^8.44.8",
"@types/libsodium-wrappers": "^0.7.13",
"@types/node": "^20.10.3",
"@types/uuid": "^9.0.7",
"@types/webtorrent": "^0.109.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.55.0",
"eslint-plugin-qwik": "^1.3.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "3.3.3",
"typescript": "^5.3.2",
"undici": "^5.26.0",
"vercel": "^29.1.1",
"vite": "^5.0.6",
"vite-tsconfig-paths": "^4.2.1"
},
"dependencies": {
"@boringer-avatars/qwik": "^0.2.1",
"@qwikest/icons": "^0.0.13",
"bittorrent-protocol": "^4.1.11",
"cbor-x": "^1.5.6",
"idb-chunk-store": "^1.0.1",
"idb-kv-store": "^4.5.0",
"libsodium-wrappers": "^0.7.13",
"parse-torrent": "^11.0.14",
"posthog-js": "^1.96.1",
"uuid": "^9.0.1"
}
}