-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "trauma",
"private": true,
"version": "0.3.0",
"type": "module",
"scripts": {
"dev": "HOST=${HOST:-127.0.0.1} bun --bun x vinxi dev",
"dev:smoke": "bun run scripts/dev-smoke.ts",
"build": "vinxi build",
"start": "HOST=${HOST:-127.0.0.1} bun --bun x vinxi start",
"preview": "HOST=${HOST:-127.0.0.1} bun --bun x vinxi preview",
"audit": "bun audit --ignore GHSA-67mh-4wv8-2f99 --ignore GHSA-g7r4-m6w7-qqqr",
"docs:check": "bun run scripts/check-docs.ts",
"typecheck": "tsc --noEmit",
"test": "bun --bun x vitest run",
"test:watch": "bun --bun x vitest",
"test:e2e": "playwright test",
"build:extension": "bun run scripts/build-browser-extension.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run scripts/migrate-database.ts",
"verify": "bun run docs:check && bun run typecheck && bun run test && bun run build"
},
"dependencies": {
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.0",
"@solidjs/start": "1.3.2",
"defuddle": "^0.18.0",
"drizzle-orm": "^0.45.2",
"entities": "^7.0.1",
"highlight.js": "^11.11.1",
"ipaddr.js": "^2.4.0",
"linkedom": "^0.18.13",
"markdown-it": "^14.3.0",
"markdown-it-anchor": "^9.2.1",
"markdown-it-footnote": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"sanitize-html": "^2.17.6",
"solid-js": "^1.9.5",
"unified": "^11.0.5",
"unist-util-visit-parents": "^6.0.2",
"vinxi": "^0.5.7"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@babel/core": "7.29.7",
"@playwright/test": "^1.56.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@types/bun": "^1.3.3",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-footnote": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/sanitize-html": "^2.16.1",
"@types/unist": "^3.0.3",
"@vitest/coverage-v8": "^4.0.15",
"drizzle-kit": "^0.31.8",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.0.15"
},
"overrides": {
"@babel/core": "7.29.7",
"brace-expansion": "5.0.8",
"h3": "1.15.11",
"postcss": "8.5.23",
"tar": "7.5.21",
"vite": "6.4.3"
},
"packageManager": "bun@1.3.13",
"patchedDependencies": {
"brace-expansion@5.0.8": "patches/brace-expansion@5.0.8.patch"
}
}