-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "qwik-city-soup-and-subs",
"description": "File based routing and MDX support Vite.js tooling. Netlify Edge Functions. 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.netlify.ts",
"dev": "npm run dev.ssr",
"dev.client": "vite",
"dev.debug": "node --inspect-brk node_modules/vite/bin/vite.js --mode ssr",
"dev.ssr": "vite --mode ssr",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"serve": "netlify dev",
"start": "npm run dev",
"typecheck": "tsc --incremental --noEmit"
},
"devDependencies": {
"@builder.io/qwik": "^0.0.39-dev20220805031634",
"@builder.io/qwik-city": "^0.0.30",
"@netlify/vite-plugin-netlify-edge": "1.1.0",
"@types/eslint": "8.4.5",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"eslint": "8.19.0",
"eslint-plugin-qwik": "0.0.36",
"node-fetch": "2.6.7",
"prettier": "2.7.1",
"typescript": "4.7.4",
"vite": "^3.0.2",
"vite-tsconfig-paths": "3.5.0"
},
"engines": {
"node": ">=16"
},
"homepage": "https://qwik.builder.io/",
"license": "",
"private": true
}