Showing
2 changed files
with
32 additions
and
0 deletions
package-lock.json
0 → 100644
This diff could not be displayed because it is too large.
package.json
0 → 100644
1 | +{ | ||
2 | + "name": "node-auction", | ||
3 | + "version": "0.0.1", | ||
4 | + "description": "노드 경매 시스템", | ||
5 | + "main": "app.js", | ||
6 | + "scripts": { | ||
7 | + "start": "nodemon app" | ||
8 | + }, | ||
9 | + "author": "Zero Cho", | ||
10 | + "license": "ISC", | ||
11 | + "dependencies": { | ||
12 | + "bcrypt": "^3.0.4", | ||
13 | + "connect-flash": "^0.1.1", | ||
14 | + "cookie-parser": "^1.4.4", | ||
15 | + "dotenv": "^7.0.0", | ||
16 | + "express": "^4.16.4", | ||
17 | + "express-session": "^1.15.6", | ||
18 | + "morgan": "^1.9.1", | ||
19 | + "multer": "^1.4.1", | ||
20 | + "mysql2": "^1.6.5", | ||
21 | + "node-schedule": "^1.3.2", | ||
22 | + "passport": "^0.4.0", | ||
23 | + "passport-local": "^1.0.0", | ||
24 | + "pug": "^2.0.0-rc.4", | ||
25 | + "sequelize": "^4.44.3", | ||
26 | + "socket.io": "^2.2.0", | ||
27 | + "sse": "0.0.8" | ||
28 | + }, | ||
29 | + "devDependencies": { | ||
30 | + "nodemon": "^1.18.10" | ||
31 | + } | ||
32 | +} |
-
Please register or login to post a comment