memlnaut-nisps/playground/package.json

26 lines
613 B
JSON
Raw Normal View History

{
"name": "memlnaut-playground",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --port 4173",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"solid-js": "^1.8.22"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/node": "^22.7.0",
"typescript": "^5.5.4",
"vite": "^5.4.10",
"vite-plugin-solid": "^2.10.2"
}
}