-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "homepage",
"description": "Them official homepage of co-IT.eu GmbH",
"type": "module",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"pnpm": {
"supportedArchitectures": {
"os": [
"win32",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64"
]
}
},
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/static/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adaptor'",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preinstall": "npx only-allow pnpm",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "1.5.6",
"@builder.io/qwik-city": "1.5.6",
"@qwik-ui/headless": "0.4.4",
"@types/eslint": "8.56.10",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-plugin-qwik": "1.5.6",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"rehype-sanitize": "5.0.1",
"rehype-stringify": "9.0.3",
"remark-parse": "10.0.2",
"remark-rehype": "10.1.0",
"tailwindcss": "3.4.4",
"typescript": "^5.3.2",
"undici": "^5.26.0",
"unified": "10.1.2",
"vite": "5.2.13",
"vite-tsconfig-paths": "4.3.2"
}
}