-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 947 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 947 Bytes
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
{
"name": "scrollvessel.com",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.12.1",
"scripts": {
"dev": "pnpm build && vite preview",
"validate:content": "tsx scripts/validate-content.ts",
"build": "pnpm validate:content && vite build && tsx scripts/generate-static-pages.ts",
"preview": "vite preview",
"prepare": "lefthook install --force",
"test": "vitest run"
},
"dependencies": {
"@vitejs/plugin-vue": "latest",
"markdown-it": "^14.2.0",
"vite": "latest",
"vue": "latest"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@tailwindcss/postcss": "latest",
"@types/markdown-it": "^14.1.2",
"@types/node": "latest",
"autoprefixer": "latest",
"lefthook": "^2.1.8",
"tailwindcss": "latest",
"tsx": "latest",
"typescript": "latest",
"vitest": "latest"
}
}