서주원

install modules

1 +.idea
2 +
3 +node_modules
...\ No newline at end of file ...\ No newline at end of file
1 +const express=require('express')
2 +const bodyParser=require('body-parser')
3 +const fs=require('fs')
4 +const session=require('express-session')
5 +const path=require('path')
6 +const bcrypt=require('bcrypt-nodejs')
7 +const app=express()
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
1 +{
2 + "name": "whoareyou",
3 + "version": "1.0.0",
4 + "description": "KHU 2018-2 OpenSourceSoftWare Term Project",
5 + "main": "app.js",
6 + "scripts": {
7 + "test": "echo \"Error: no test specified\" && exit 1"
8 + },
9 + "repository": {
10 + "type": "git",
11 + "url": "ssh://git@khuhub.khu.ac.kr:12959/2017103994/WhoAreYou.git"
12 + },
13 + "author": "",
14 + "license": "ISC",
15 + "dependencies": {
16 + "bcrypt-nodejs": "0.0.3",
17 + "body-parser": "^1.18.3",
18 + "express": "^4.16.4",
19 + "express-session": "^1.15.6",
20 + "fs": "0.0.1-security",
21 + "path": "^0.12.7"
22 + }
23 +}