-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
66 lines (41 loc) · 1.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "qwik-intro-app",
"description": "Qwik Introduction App",
"private": true,
"scripts": {
"start": "vite --mode ssr --open",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"preview": "qwik build preview && vite preview --open",
"build": "qwik build",
"build.types": "tsc --incremental --noEmit",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adaptor'",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "0.104.0",
"@builder.io/qwik-city": "0.104.0",
"@types/eslint": "8.37.0",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"cypress": "^12.11.0",
"cypress-ct-qwik": "^0.3.0",
"eslint": "8.39.0",
"eslint-plugin-qwik": "0.104.0",
"prettier": "2.8.8",
"typescript": "5.0.4",
"undici": "5.22.0",
"vite": "4.3.2",
"vite-plugin-simple-json-server": "^0.6.2",
"vite-tsconfig-paths": "4.2.0"
},
"engines": {
"node": ">=15.0.0"
}
}