generated from wecode-bootcamp-korea/backend-2nd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 894 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
36
37
38
{
"name": "48-3rd-richmaker-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "DOTENV_CONFIG_PATH=.env.test jest --setupFiles=dotenv/config",
"start": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.410.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dbmate": "^2.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.6.4",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^3.6.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"supertest": "^6.3.3",
"typeorm": "^0.3.17"
},
"devDependencies": {
"morgan": "^1.10.0",
"nodemon": "^3.0.1"
},
"jest": {
"testRegex": "(/tests/tests/.*|(\\.|/)(test))\\.js$"
}
}