-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.36 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.36 KB
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
36
37
38
39
40
41
42
{
"name": "node4th-yogeoyo-api",
"version": "1.0.0",
"main": "app.js",
"repository": "https://github.com/ooheunda/node4th-yogeoyo-api",
"author": "ooheunda <ooheunda@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "nodemon ./src/app.js",
"format": "prettier --write *.js **/*.js",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --forceExit",
"test:silent": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --silent --forceExit",
"test:coverage": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage --forceExit",
"test:unit": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest __tests__/unit --forceExit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.521.0",
"@prisma/client": "^5.10.2",
"add": "^2.0.6",
"bcrypt": "^5.1.1",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nodemailer": "^6.9.10",
"prisma": "^5.10.2",
"redis": "^4.6.13",
"winston": "^3.11.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5"
}
}