-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
45
46
{
"name": "server",
"version": "1.0.0",
"description": "SchoolRanker server",
"main": "index.js",
"scripts": {
"start": "node index.js",
"backend": "nodemon index.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"frontend": "npm run start --prefix client",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run backend\" \"cd ./client && npm run start\""
},
"author": "LEE HYUNJICK",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cool-ascii-faces": "^1.3.4",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-kakao": "^1.0.0",
"passport-naver": "^1.0.6",
"request": "^2.88.2"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"engines": {
"node": "14.2.0",
"npm": "6.14.4"
}
}