-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "api-personal-finance",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "set NODE_ENV=test&& mocha ./test/src/**/*.test.js --config test/mocharc.json",
"test:integration": "set NODE_ENV=test&& mocha ./test/**/*.test.js --config test/mocharc.json",
"lint": "eslint --ext .js,.ts ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/jeff-pedro/api-finance-control"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.5.0",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"redis": "^4.0.0-rc.4"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "10.0.0",
"nodemon": "^2.0.19"
}
}