-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1000 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1000 Bytes
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
{
"name": "@snippet/qwik-city",
"private": true,
"type": "module",
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adaptor'",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"test": "SERVER_NAME=qwik-city yarn g:nx test:snippet @sdk/tests",
"serve": "yarn run preview"
},
"devDependencies": {
"@builder.io/qwik": "^1.19.1",
"@builder.io/qwik-city": "^1.9.1",
"@types/node": "^18.11.18",
"node-fetch": "3.3.0",
"typescript": "^5.1.6",
"vite": "^4.5.11",
"vite-tsconfig-paths": "3.5.0"
},
"dependencies": {
"@builder.io/sdk-qwik": "workspace:*"
}
}