-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1009 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1009 Bytes
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": "melody-link",
"version": "1.0.0",
"description": "9팀 2차 프로젝트입니다.",
"main": "index.js",
"scripts": {
"client": "cd client && yarn dev",
"server": "nodemon ./server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.16",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"http-errors": "^2.0.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"vite": "^5.0.4"
}
}