-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "hsno",
"type": "module",
"private": true,
"description": "App with Routing built-in ready to create your app",
"trustedDependencies": [
"sharp"
],
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c vite.static.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",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"generate-pwa-assets": "pwa-assets-generator"
},
"devDependencies": {
"@builder.io/qwik": "^1.2.18",
"@builder.io/qwik-city": "^1.2.18",
"@importantimport/eslint-config": "^0.2.0",
"@importantimport/eslint-config-ts": "^0.2.0",
"@importantimport/tsconfig": "^0.0.1",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.3",
"@unocss/reset": "^0.57.7",
"@vite-pwa/assets-generator": "^0.0.11",
"contentlayer": "^0.3.4",
"eslint": "^8.54.0",
"eslint-plugin-qwik": "^1.2.18",
"lightningcss": "^1.22.1",
"typescript": "^5.3.2",
"unocss": "^0.57.7",
"vite": "^5.0.1",
"vite-plugin-pwa": "^0.17.0",
"vite-plugin-watch": "^0.2.0",
"vite-tsconfig-paths": "^4.2.1",
"workbox-core": "^7.0.0",
"workbox-precaching": "^7.0.0"
}
}