-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "vite-qwik-example",
"type": "module",
"private": true,
"description": "unplugin-icons + Qwik (Vite)",
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"dev": "vite --mode ssr",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "1.2.10",
"@svgx/core": "^1.0.1",
"@types/eslint": "8.44.2",
"@types/node": "^22.0.0",
"@types/node-fetch": "latest",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"eslint": "8.48.0",
"eslint-plugin-qwik": "1.2.10",
"node-fetch": "3.3.2",
"prettier": "3.0.3",
"typescript": "5.2.2",
"undici": "5.23.0",
"unplugin-icons": "workspace:*",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "node .stackblitz.js && npm install && npm run dev"
}
}