-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.55 KB
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
{
"name": "hackaflow",
"version": "1.0.0",
"engines": {
"node": "10.19.0",
"npm": "7.6.1"
},
"description": "Hackaflow",
"author": "Ing. Charles Rodriguez",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:charlescart/node-restserver.git"
},
"main": "app.js",
"scripts": {
"start": "nodemon -r dotenv/config src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"development": "node-dev -r dotenv/config src/app.js",
"nodemon": "nodemon -r dotenv/config src/app.js -e js,html,hbs,css,json"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"express-rate-limit": "^5.1.3",
"google-auth-library": "^6.0.0",
"jest": "^25.5.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.29.1",
"mongoose": "^5.9.11",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"node-dev": "^4.0.0",
"node-fetch": "^2.6.0",
"node-geocoder": "^3.27.0",
"nodemon": "^2.0.3",
"npm-check-updates": "^4.1.2",
"path": "^0.12.7",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.7",
"socket.io": "^4.0.1",
"uuid": "^8.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}