Files
Nix-Presentation/package.json

28 lines
653 B
JSON
Raw Normal View History

2025-10-02 12:25:33 -04:00
{
"name": "nix-presentation",
2025-10-02 12:58:19 -04:00
"private": true,
"version": "0.0.0",
"type": "module",
2025-10-02 12:25:33 -04:00
"scripts": {
2025-10-02 12:58:19 -04:00
"dev": "vite",
2025-10-07 11:08:04 -04:00
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
2025-10-02 12:25:33 -04:00
},
2025-10-02 12:58:19 -04:00
"devDependencies": {
2025-10-07 11:08:04 -04:00
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tsconfig/svelte": "^5.0.5",
"@types/d3": "^7.4.3",
"@types/node": "^24.6.0",
"@types/reveal.js": "^5.2.0",
"svelte": "^5.39.6",
"svelte-check": "^4.3.2",
2025-10-02 12:58:19 -04:00
"typescript": "~5.9.3",
"vite": "^7.1.7"
},
"dependencies": {
2025-10-07 11:08:04 -04:00
"d3": "^7.9.0",
"reveal.js": "^5.2.1"
2025-10-02 12:25:33 -04:00
}
}