This repository was archived by the owner on Sep 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "qwiktober-2022",
"description": "Recommended for your first Qwik app",
"engines": {
"node": ">=15.0.0"
},
"type": "module",
"private": false,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build --ssr src/entry.netlify-edge.tsx",
"build.types": "tsc --incremental --noEmit",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write",
"fmt.all": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"serve": "netlify dev",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"postinstall": "husky install",
"lint-staged": "lint-staged",
"test": "ava"
},
"devDependencies": {
"@builder.io/qwik": "0.9.0",
"@builder.io/qwik-city": "0.0.111",
"@netlify/vite-plugin-netlify-edge": "1.1.0",
"@types/eslint": "8.40.0",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"ava": "^4.3.3",
"axios": "^1.1.2",
"eslint": "8.42.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qwik": "0.9.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"node-fetch": "3.2.10",
"prettier": "^2.7.1",
"ts-import": "^4.0.0-beta.6",
"typescript": "4.8.3",
"vite": "3.1.1",
"vite-tsconfig-paths": "3.5.0"
}
}