-
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) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 900 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": "zelium",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"start": "tsx src/server/index.ts",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:prod": "playwright test -c playwright.production.config.ts",
"test": "npm run test:unit && npm run test:e2e"
},
"dependencies": {
"@milkdown/kit": "^7.21.1",
"@milkdown/preset-gfm": "^7.21.1",
"fastify": "^5.3.3",
"yaml": "^2.7.0"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/svelte": "^5.2.6",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.13.4",
"jsdom": "^26.0.0",
"svelte": "^5.20.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
}
}