37 lines
982 B
JSON
37 lines
982 B
JSON
{
|
|
"name": "gnommoplayer",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build && npm run build:lib",
|
|
"build:lib": "vite build --config vite.lib.config.ts",
|
|
"deploy:editor": "node scripts/deploy-vendor.mjs editor",
|
|
"deploy:web": "node scripts/deploy-vendor.mjs web",
|
|
"deploy:all": "node scripts/deploy-vendor.mjs all",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^18.2.66",
|
|
"@types/react-dom": "^18.2.22",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"jsdom": "^26.1.0",
|
|
"typescript": "^5.8.3",
|
|
"vite": "^5.4.18",
|
|
"vitest": "^2.1.9"
|
|
}
|
|
}
|