nextjs-clone/package.json
Florian Bouillon c467bccbe6
feat: Initial Commit
Signed-off-by: Avior <github@avior.me>
2022-11-03 00:58:37 +01:00

28 lines
739 B
JSON

{
"name": "test",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "ts-node -T --project tsconfig.json main.tsx",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.tsx && tsc --project tsconfig.json"
},
"dependencies": {
"@dzeio/config": "^1.1.8",
"@tcgdex/sdk": "^2.4.7",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"vite": "^3.2.2"
}
}