File size: 1,199 Bytes
b2e4883 14e1566 b2e4883 dcc72ff b2e4883 | 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 35 36 37 38 39 40 41 42 | {
"name": "@patterntalk/web",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 3000",
"dev:clean": "node --input-type=module -e \"import{rmSync}from'fs';rmSync('.next',{recursive:true,force:true})\" && next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@patterntalk/shared-types": "workspace:*",
"@tonejs/midi": "^2.0.28",
"next": "^14.2.18",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.18",
"happy-dom": "^15.11.7",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
}
}
|