-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 737 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 737 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
{
"name": "versions",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest",
"prepare": "husky"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/js-yaml": "^4.0.9",
"husky": "^9.1.7",
"svelte": "^5.54.0",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vitest": "^4.1.0"
},
"dependencies": {
"js-yaml": "^4.0.9",
"serve": "^14.2.6"
}
}