-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
{
"name": "food-challenge-ecommerce",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --foreceExit",
"start": "nodemon server.js",
"prettify": "prettier --write *.js **/*.js",
"test:unit": "jest __tests__/unit -- forceExit",
"test:integration": "jest __tests__/integration --forceExit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1307.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.1.0",
"passport": "^0.6.0",
"passport-kakao": "^1.0.1",
"path": "^0.12.7",
"sequelize": "^6.28.0",
"socket.io": "^4.5.4"
},
"devDependencies": {
"dotenv": "^16.0.3",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.3"
}
}