rsnext/examples/with-tigris/package.json

24 lines
546 B
JSON
Raw Normal View History

2022-11-15 12:00:29 +01:00
{
"private": true,
"scripts": {
"predev": "APP_ENV=development npm run setup",
"dev": "next dev",
"build": "next build",
"postbuild": "APP_ENV=production npm run setup",
"start": "next start",
"setup": "npx ts-node scripts/setup.ts"
},
"dependencies": {
"@tigrisdata/core": "latest",
2022-11-15 12:00:29 +01:00
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.11.2",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"typescript": "4.8.4"
}
}