-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
59
60
61
62
63
64
65
66
67
68
{
"name": "tech-interview",
"version": "1.0.0",
"description": "Technical Interview (Simple API implementation)",
"private": true,
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"start:prod": "NODE_ENV=production node server.js",
"demo": "node ./app/scripts/demo.js",
"flush": "node ./app/scripts/flush.js",
"populate": "run-s flush demo"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"express": "^4.15.2",
"express-fileupload": "^0.1.3",
"express-jwt": "^5.3.0",
"express-session": "^1.15.6",
"file-stream-rotator": "^0.1.0",
"googleapis": "^20.1.0",
"helmet": "^3.6.0",
"jsonwebtoken": "^7.4.0",
"lodash": "^4.17.4",
"method-override": "^2.3.8",
"mongodb": "^2.2.26",
"mongoose": "^4.11.12",
"mongoskin": "^2.1.0",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"mysql": "^2.14.1",
"ng4-social-login": "^1.3.3",
"pushy": "^2.0.4",
"q": "^1.5.0",
"request": "^2.81.0",
"rootpath": "^0.1.2",
"short-id": "0.1.0-1",
"speakeasy": "^2.0.0",
"textrazor": "^2.1.0",
"throng": "^4.0.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"nodemon": "^1.11.0",
"npm-run-all": "^4.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devkingdom1116/tech-interview.git"
},
"keywords": [
"node.js",
"es7",
"mongodb"
],
"author": "Hans Chen",
"license": "ISC",
"bugs": {
"url": "https://github.com/devkingdom1116/tech-interview/issues"
},
"homepage": "https://github.com/devkingdom1116/tech-interview#readme"
}