-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "watchful",
"description": "Blank Qwik starter app. Vite.js tooling. 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": "npm run dev.ssr",
"dev.client": "vite",
"dev.debug": "node --inspect-brk node_modules/vite/bin/vite.js --force --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",
"serve-dev": "CORS_ENABLED=yes node server/entry.express",
"start": "npm run dev",
"typecheck": "tsc --incremental --noEmit"
},
"devDependencies": {
"@builder.io/qwik": "0.0.107",
"@types/cors": "^2.8.12",
"@types/eslint": "8.4.6",
"@types/express": "4.17.13",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"eslint": "8.22.0",
"eslint-plugin-qwik": "0.0.107",
"express": "4.17.3",
"node-fetch": "3.2.10",
"prettier": "2.7.1",
"sass": "^1.54.7",
"typescript": "4.7.4",
"vite": "3.0.9"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"homepage": "https://qwik.builder.io/",
"license": "",
"private": true,
"type": "module",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"googleapis": "^107.0.0"
}
}