-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "voteserver",
"version": "1.0.0",
"description": "block chain vote system server",
"main": "index.js",
"author": "Lee Hong Jun",
"license": "ISC",
"scripts": {
"express": "node src/index.js web express",
"http": "node src/index.js web http",
"https": "node src/index.js web https",
"http2": "node src/index.js web http2",
"crawler": "node src/index.js crawler",
"test": "node src/index.js test"
},
"_moduleAliases": {
"@root": "",
"@src": "src"
},
"dependencies": {
"aws-sdk": "^2.1002.0",
"bcrypt": "^5.0.1",
"caver-js": "^1.6.4",
"chokidar": "^3.5.2",
"clone-deep": "^4.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"fs": "^0.0.1-security",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"http2": "^3.3.7",
"http2-express-bridge": "^1.0.7",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"multer-s3": "^2.9.0",
"mysql2": "^2.3.0",
"nodemailer": "^6.6.5",
"nunjucks": "^3.2.3",
"passport": "^0.5.0",
"passport-kakao": "^1.0.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"request-promise": "^4.2.6",
"sequelize": "^6.6.5",
"sequelize-cli": "^6.2.0",
"uniqid": "^5.4.0",
"util": "^0.12.4",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
}
}