-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.02 KB
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
45
46
47
48
{
"name": "cloud-nodejs-learning",
"version": "1.0.0",
"description": "클라우드 서비스를 위한 Node.js 학습 프로젝트",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"keywords": [
"nodejs",
"express",
"cloud",
"api",
"mongodb",
"jwt"
],
"author": "학습자",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.19.0",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.55.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}