-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "node-basic",
"version": "0.1.0",
"description": "Node API with mongoDB",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kdhttps/node-basic.git"
},
"keywords": [
"node",
"nodejs",
"mongodb",
"expressjs",
"jwt",
"authentication",
"boilerplate",
"basic",
"simple-learn"
],
"bugs": {
"url": "https://github.com/kdhttps/node-basic/issues"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "./node_modules/.bin/mocha src/**/*.test.js"
},
"author": "KD",
"license": "MIT",
"dependencies": {
"async": "^2.5.0",
"bluebird": "^3.5.0",
"body-parser": "^1.18.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"fs": "0.0.1-security",
"http": "0.0.0",
"http-status": "^1.0.1",
"https": "^1.0.0",
"jsonwebtoken": "^8.0.1",
"mongoose": "^5.9.2",
"morgan": "^1.8.2",
"path": "^0.12.7",
"randomstring": "^1.1.5",
"util": "^0.10.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"request": "^2.88.0"
}
}