1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/package.json

38 lines
954 B
JSON
Raw Normal View History

2022-05-20 11:59:24 +00:00
{
"name": "festa",
"version": "0.1.0",
"private": true,
"scripts": {
2022-05-28 03:45:05 +00:00
"app:dev": "next dev",
"app:build": "next build",
"app:start": "next start",
"app:lint": "next lint",
"db:dev": "dotenv -e .env.local prisma db push --force-reset",
"db:generate": "dotenv -e .env.local prisma generate"
2022-05-20 11:59:24 +00:00
},
"dependencies": {
2022-05-20 17:31:50 +00:00
"@prisma/client": "3.14.0",
2022-05-28 03:45:05 +00:00
"axios": "^0.27.2",
2022-05-27 00:46:30 +00:00
"classnames": "^2.3.1",
2022-05-28 03:45:05 +00:00
"cors": "^2.8.5",
"crypto-random-string": "^5.0.0",
2022-05-20 11:59:24 +00:00
"next": "12.1.6",
2022-05-25 14:20:22 +00:00
"next-i18next": "^11.0.0",
2022-05-20 12:20:45 +00:00
"prisma": "^3.14.0",
2022-05-20 11:59:24 +00:00
"react": "18.1.0",
"react-dom": "18.1.0",
2022-05-27 00:46:30 +00:00
"react-storage-hooks": "^4.0.1",
2022-05-28 03:45:05 +00:00
"react-telegram-login": "^1.1.2",
"swr": "^1.3.0"
2022-05-20 11:59:24 +00:00
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
2022-05-28 03:45:05 +00:00
"dotenv-cli": "^5.1.0",
2022-05-20 11:59:24 +00:00
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"typescript": "4.6.4"
}
}