-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.46 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
{
"name": "rectanglepodcast",
"description": "Rectangle Podcast about frontend",
"engines": {
"node": "^20.6.0 || >=21.0.0"
},
"private": true,
"trustedDependencies": [
"sharp"
],
"type": "module",
"scripts": {
"------- NODE VERSION -------": "",
"preinstall": "node -e \"if (parseInt(process.versions.node.split('.')[0]) < 20) { console.error('Node.js version 20 or higher is required.'); process.exit(1); }\"",
"predev": "node -e \"if (parseInt(process.versions.node.split('.')[0]) < 20) { console.error('Node.js version 20 or higher is required.'); process.exit(1); }\"",
"prestart": "node -e \"if (parseInt(process.versions.node.split('.')[0]) < 20) { console.error('Node.js version 20 or higher is required.'); process.exit(1); }\"",
"------- BUILD SCRIPTS -------": "",
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/cloudflare-pages/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"------- DEVELOPMENT SCRIPTS -------": "",
"dev": "vite --host --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --host --mode ssr --force",
"------- DEPLOYMENT SCRIPTS -------": "",
"deploy": "wrangler pages deploy ./dist",
"------- FORMATTING & LINTING -------": "",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"------- PREVIEW -------": "",
"preview": "qwik build preview && vite preview --open",
"start": "vite --host --open --mode ssr",
"serve": "wrangler pages dev ./dist --compatibility-flags=nodejs_als",
"------- MISC SCRIPTS -------": "",
"qwik": "qwik",
"-----------------------------": ""
},
"devDependencies": {
"@builder.io/qwik": "^1.5.1",
"@builder.io/qwik-city": "^1.5.1",
"@ianvs/prettier-plugin-sort-imports": "4.2.0",
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.57.0",
"eslint-plugin-qwik": "^1.5.1",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwind-merge": "2.2.1",
"tailwindcss": "3.3.3",
"typescript": "5.3.3",
"undici": "*",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "^3.0.0"
}
}