-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.19 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
69
70
71
72
{
"name": "mephi-site",
"description": "Сайт Сэма Булатова",
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/fastify/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect ./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": "node server/entry.fastify",
"start": "vite --open --mode ssr",
"test.e2e": "playwright test",
"test.unit": "vitest components",
"test.unit.ui": "vitest --ui components",
"qwik": "qwik"
},
"engines": {
"node": "^20.3.0 || >=21.0.0"
},
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
"private": true,
"trustedDependencies": [
"sharp"
],
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
"type": "module",
"devDependencies": {
"@builder.io/qwik": "^1.8.0",
"@builder.io/qwik-city": "^1.8.0",
"@playwright/test": "^1.38.1",
"@types/eslint": "8.56.10",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitest/ui": "^0.34.6",
"dotenv": "^16.3.2",
"eslint": "8.57.0",
"eslint-plugin-qwik": "^1.8.0",
"prettier": "3.3.3",
"typescript": "5.4.5",
"undici": "*",
"vite": "5.3.5",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6",
"wireit": "0.14.9"
},
"prettier": {
"quoteProps": "as-needed",
"semi": false,
"singleQuote": false,
"bracketSpacing": false
},
"dependencies": {
"@fastify/compress": "^6.2.1",
"@fastify/static": "^6.10.1",
"@sweet-monads/either": "3.3.1",
"@sweet-monads/maybe": "3.3.1",
"fastify": "^4.17.0",
"fastify-plugin": "^4.5.0",
"isomorphic-dompurify": "2.15.0",
"marked": "14.1.2",
"marked-shiki": "1.1.1",
"pocketbase": "0.21.5",
"shiki": "1.16.3"
}
}