generated from wecode-bootcamp-korea/backend-2nd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 835 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-gyppt-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"test": "DOTENV_CONFIG_PATH=.env.test jest --setupFiles=dotenv/config"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"axios": "^1.5.0",
"cors": "^2.8.5",
"dbmate": "^2.6.0",
"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.0",
"typeorm": "^0.3.17"
}
}