-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
60 lines (60 loc) · 1.99 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
{
"name": "qwind",
"description": "A template to make your website using Qwik + Tailwind CSS.",
"version": "0.122.0",
"type": "module",
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
"trustedDependencies": [
"sharp"
],
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
"private": true,
"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 adapter'",
"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*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.20",
"@unpic/qwik": "^0.0.46",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
"node-fetch": "3.3.2",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@builder.io/qwik": "^1.8.0",
"@builder.io/qwik-city": "^1.8.0",
"@divriots/jampack": "^0.25.0",
"@tailwindcss/typography": "^0.5.14",
"@types/eslint": "^8.56.10",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-plugin-qwik": "^1.8.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "3.4.10",
"typescript": "5.5.4",
"vite": "^5.4.2",
"vite-tsconfig-paths": "^5.0.1"
}
}