forked from microapidev/comment-microapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.23 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
69
70
71
{
"name": "comment-microapi",
"version": "1.0.0",
"description": "This is microservice that allows user to create, edit, delete, get, and flag comments and replies",
"main": "server.js",
"scripts": {
"start": "cross-env DEBUG=log node ./bin/www",
"startDev": "cross-env DEBUG=log NODE_ENV=dev nodemon --exec babel-node ./bin/www",
"test": "cross-env NODE_ENV=test jest --verbose",
"test:debug": "cross-env NODE_ENV=test jest --runInBand --detectOpenHandles --verbose",
"test:watch": "cross-env NODE_ENV=test jest --watch --verbose",
"test:cover": "cross-env NODE_ENV=test jest --coverage",
"test:ci": "cross-env NODE_ENV=test jest --coverage --verbose && cat ./coverage/lcov.info | coveralls",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint --fix \"./**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/microapidev/comment-microapi.git"
},
"keywords": [
"comments",
"replies",
"tweet",
"twitter",
"reports"
],
"author": "HNGi7 Team Justice League",
"license": "ISC",
"bugs": {
"url": "https://github.com/microapidev/comment-microapi/issues"
},
"homepage": "https://github.com/microapidev/comment-microapi#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-rate-limit": "^5.1.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.20",
"mongoose-delete": "^0.5.2",
"mongoose-paginate-v2": "^1.3.9",
"morgan": "^1.10.0",
"rate-limit-mongo": "^2.2.0",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@shelf/jest-mongodb": "^1.1.5",
"babel-jest": "^26.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"express-list-endpoints": "^4.0.1",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
}
}