-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.03 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": "dhnm.dev",
"description": "Nhật Minh - Software Projects & Learning",
"engines": {
"node": ">=20.0.0"
},
"private": true,
"trustedDependencies": [
"esbuild",
"sharp",
"workerd"
],
"type": "module",
"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",
"deploy": "npm run build && wrangler pages deploy",
"dev": "dotenvx run --env-file=.dev.vars -- vite --mode ssr",
"dev.debug": "dotenvx run --env-file=.dev.vars -- node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "npm run build && wrangler pages dev",
"serve": "wrangler pages dev",
"start": "dotenvx run --env-file=.dev.vars -- vite --open --mode ssr",
"cf-typegen": "wrangler types",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.9.1",
"@builder.io/qwik-city": "^1.9.1",
"@csstools/postcss-oklab-function": "^4.0.4",
"@dotenvx/dotenvx": "^1.21.0",
"@types/eslint": "^8.56.12",
"@types/node": "^20.17.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.13",
"eslint": "^8.57.1",
"eslint-plugin-qwik": "^1.9.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "^3.83.0"
},
"dependencies": {
"@fontsource-variable/inter": "^5.1.0",
"@fontsource-variable/source-sans-3": "^5.1.0",
"@fontsource-variable/source-serif-4": "^5.1.0",
"@fontsource/fira-sans": "^5.1.0",
"@tailwindcss/typography": "^0.5.15",
"clsx": "^2.1.1"
}
}