forked from onwidget/qwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "qwind",
"description": "A template to make your website using Qwik + Tailwind CSS.",
"version": "0.113.0",
"private": true,
"scripts": {
"build": "qwik build && jampack ./dist",
"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": {
"@builder.io/qwik": "1.2.10",
"@builder.io/qwik-city": "1.2.10",
"@fontsource-variable/inter": "^5.0.8",
"@unpic/qwik": "^0.0.25",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"node-fetch": "3.3.2",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@divriots/jampack": "^0.14.0",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "8.44.2",
"@types/markdown-it": "^13.0.1",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"autoprefixer": "10.4.15",
"eslint": "8.45.0",
"eslint-plugin-qwik": "1.2.10",
"postcss": "^8.4.28",
"prettier": "3.0.2",
"tailwindcss": "^3.3.3",
"typescript": "5.1.6",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0"
},
"engines": {
"node": ">=15.0.0"
}
}