This repository has been archived by the owner on Sep 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "uzay",
"version": "0.0.1",
"description": "Uzay is a Node.js and MongoDB based modern blog engine.",
"main": "index.js",
"scripts": {
"docs": "npx apidoc -i ./routes -o ./docs",
"precommit": "npm test",
"dev": "NODE_ENV=DEBUG npx nodemon index.js",
"staging": "NODE_ENV=STAGING npx node index.js",
"start": "NODE_ENV=PRODUCTION npx node index.js",
"test": "npx standard && npx mocha --full-trace"
},
"author": "Saksham Saxena",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sakshamsaxena/uzay.git"
},
"apidoc": {
"title": "Uzay",
"order": [
"SignUp",
"VerifyUser",
"GetBlogPostByID",
"GetBlogPostsByTagName",
"GetCommentByID",
"PostCommentToBlogPost",
"PatchLikeOnBlogPost",
"PatchDislikeOnBlogPost",
"PatchLikeOnBlogPostComment",
"PatchDislikeOnBlogPostComment",
"GetUserInfo",
"GetAllLikedContentByUser",
"GetAllDislikedContentByUser",
"GetAllPostsByUser",
"GetAllCommentsByUser",
"PostNewPostByUser"
]
},
"standard": {
"ignore": [
"docs"
]
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.0",
"mongoose": "^5.7.5",
"mongoose-plugin-autoinc": "^1.1.9",
"morgan": "^1.9.1"
},
"devDependencies": {
"apidoc": "^0.17.6",
"husky": "^0.14.3",
"mocha": "5.2.0",
"nodemon": "^1.18.3",
"should": "^13.1.3",
"standard": "^11.0.0",
"supertest": "^3.0.0"
}
}