-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
67
68
{
"name": "brandon-pittman",
"description": "Brandon Pittman's personal site",
"engines": {
"node": ">=15.0.0"
},
"type": "module",
"private": true,
"scripts": {
"build": "npm run build.validate && 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",
"build.validate": "npx qwik-markdown v",
"deploy": "wrangler pages publish ./dist",
"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 .",
"g": "npx qwik-markdown g",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"serve": "wrangler pages dev ./dist",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.11.0",
"@builder.io/qwik-city": "^1.11.0",
"@clack/prompts": "^0.7.0",
"@types/eslint": "8.44.2",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"@vanilla-extract/css": "^1.11.1",
"clipboardy": "^3.0.0",
"eslint": "8.47.0",
"eslint-plugin-qwik": "^1.11.0",
"glob": "^10.3.4",
"gray-matter": "^4.0.3",
"less": "^4.2.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"qwik-markdown": "^0.0.20",
"simple-git-hooks": "^2.8.1",
"styled-vanilla-extract": "^0.5.4",
"tsx": "^4.7.0",
"typescript": "5.1.6",
"undici": "5.22.1",
"vite": "5.1.5",
"vite-tsconfig-paths": "4.2.0",
"wrangler": "^3.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"dependencies": {
"@vanilla-extract/sprinkles": "^1.6.1",
"og-img": "^0.2.0",
"qwik-dessert": "^0.0.8",
"valibot": "^0.21.0"
}
}