-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 919 Bytes
/
package.json
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
{
"name": "swappington",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "dotenv -e .env.local -- prisma migrate dev && prisma generate && next dev",
"build": "next build",
"start": "prisma migrate deploy && next start",
"lint": "next lint"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.620.0",
"@aws-sdk/s3-request-presigner": "^3.620.0",
"@prisma/client": "^5.17.0",
"@techstark/opencv-js": "^4.9.0-release.3",
"formidable": "^3.5.1",
"jimp": "^0.22.12",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/formidable": "^3.4.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"prisma": "^5.17.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}