generated from wecode-bootcamp-korea/backend-2nd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.06 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": "49-3rd-ifareyout-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "DOTENV_CONFIG_PATH=.env.test jest --setupFiles=dotenv/config",
"dev": "DOTENV_CONFIG_PATH=.env.dev nodemon server.js",
"start": "DOTENV_CONFIG_PATH=.env.prod nodemon server.js"
},
"keywords": [],
"author": "3team",
"license": "ISC",
"devDependencies": {
"cors": "^2.8.5",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3"
},
"dependencies": {
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"bull": "^4.11.4",
"dbmate": "^2.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^3.6.1",
"nodemailer": "^6.9.5",
"redis": "^4.6.10",
"supertest": "^6.3.3",
"typeorm": "^0.3.17",
"uuid": "^9.0.1",
"uuid4": "^2.0.3"
}
}