-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 880 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 880 Bytes
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": "codeit-prorject-backend",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "src/app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.637.0",
"@aws-sdk/client-s3": "^3.637.0",
"@prisma/client": "^5.18.0",
"aws-sdk": "^2.1682.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-jwt": "^8.4.1",
"is-email": "^1.0.2",
"is-uuid": "^1.0.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"superstruct": "^1.0.3"
},
"devDependencies": {
"nodemon": "^3.1.4",
"prisma": "^5.18.0"
}
}