-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.66 KB
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
{
"name": "tidee",
"devDependencies": {
"@builder.io/qwik": "^1.20.0",
"@builder.io/qwik-city": "^1.20.0",
"@qwikest/icons": "^0.0.13",
"@types/bun": "^1.3.14",
"@types/eslint": "8.56.10",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"autoprefixer": "^10.5.0",
"eslint": "8.57.0",
"eslint-plugin-qwik": "^1.20.0",
"fast-sort": "^3.4.1",
"postcss": "^8.5.15",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"simplex-noise": "^4.0.3",
"surrealdb": "^1.3.2",
"tailwindcss": "^3.4.19",
"typescript": "5.4.5",
"undici": "^7.25.0",
"unstorage": "^1.17.5",
"vite": "5.3.5",
"vite-tsconfig-paths": "^4.3.2",
"defu": "^6.1.7",
"destr": "^2.0.5",
"qwache": "^0.0.4"
},
"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/bun/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",
"serve": "bun server/entry.bun.js",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"setup-db": "bun ./setup/setup.ts"
},
"trustedDependencies": [
"sharp"
],
"type": "module"
}