-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "node-mongo-api",
"version": "0.0.1",
"description": "Node, Express, and MongoDB base project for faster api creation ",
"main": "src/server.js",
"scripts": {
"start": "node ./src/server.js",
"watch": "nodemon ./src/server.js",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"fix": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"migrate": "./node_modules/.bin/migrate",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --recursive --timeout 10000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/projetos-node1/projetos/node-api-base.git"
},
"author": "Keust Pablo Silvano <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/projetos-node1/projetos/node-api-base/issues"
},
"homepage": "https://gitlab.com/projetos-node1/projetos/node-api-base#readme",
"dependencies": {
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongodb": "^3.5.2",
"mongoose": "^5.8.10",
"mongoose-bcrypt": "^1.6.0",
"mongoose-beautiful-unique-validation": "^7.1.1",
"mongoose-timestamp": "^0.6.0",
"node-cache": "^5.1.0",
"winston": "^3.2.1",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"migrate-mongoose": "^4.0.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2"
}
}