generated from wecode-bootcamp-korea/backend-2nd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
44
{
"name": "49-3rd-connection-backend",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "DOTENV_CONFIG_PATH=.env.test jest --setupFiles=dotenv/config --runInBand --silent --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.430.0",
"aws-sdk": "^2.1480.0",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^3.6.1",
"node-geocoder": "^4.2.0",
"react-router-dom": "^6.17.0",
"supertest": "^6.3.3",
"typeorm": "^0.3.17"
},
"directories": {
"test": "tests"
},
"description": ""
}