-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 KB
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
{
"name": "qwik-bug",
"description": "Blank Qwik starter app. Vite.js tooling. Express.js server. Prettier code formatter.",
"scripts": {
"build": "npm run typecheck && npm run build.client && npm run build.ssr",
"build.client": "vite build",
"build.ssr": "vite build --ssr src/entry.express.tsx",
"dev": "vite",
"dev.debug": "node --inspect-brk node_modules/vite/bin/vite.js --mode ssr",
"dev.ssr": "node --inspect node_modules/vite/bin/vite.js --mode ssr",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"serve": "node server/entry.express.js",
"start": "npm run dev",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@builder.io/qwik": "0.0.34",
"@types/eslint": "8.4.2",
"@types/express": "4.17.13",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"eslint": "8.16.0",
"eslint-plugin-qwik": "0.0.34",
"express": "4.17.3",
"node-fetch": "2.6.7",
"prettier": "2.6.2",
"typescript": "4.7.2",
"vite": "2.9.9"
},
"engines": {
"node": ">=14"
},
"homepage": "https://qwik.builder.io/",
"license": "",
"private": true
}