forked from Cv-Keep/cvkeep-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "cvkeep-backend",
"version": "1.0.0",
"description": "Cv Keep REST API",
"main": "main.js",
"engines": {
"node": "14.x"
},
"scripts": {
"lint": "eslint .",
"serve": "npm run lint && NODE_ENV=$npm_config_stage nodemon index.js",
"serve:debug": "DEBUG=express:* npm run serve",
"heroku:create": "sh ./sh/heroku-create.sh",
"heroku:setenv": "sh ./sh/heroku-setenv.sh"
},
"author": "Felippe Regazio",
"license": "ISC",
"dependencies": {
"JSONStream": "^1.3.5",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"escape-string-regexp": "^4.0.0",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"express-fileupload": "^1.1.7-alpha.4",
"express-rest-i18n": "^1.0.1",
"handlebars": "^4.7.6",
"helmet": "^4.2.0",
"html-entities": "^1.3.1",
"jsonwebtoken": "^8.5.1",
"logflake": "^1.6.0",
"md5": "^2.2.1",
"memory-cache": "^0.2.0",
"merge-deep": "^3.0.2",
"mime-types": "^2.1.24",
"mongodb": "^3.6.6",
"mongojs": "^3.0.0",
"mongoose": "^5.13.7",
"node-cron": "^3.0.0",
"nodemailer": "^6.3.1",
"rimraf": "^3.0.2",
"slugify": "^1.3.6",
"superagent": "^5.2.2"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"jest": "^26.6.3",
"mocha": "^6.1.4",
"nodemon": "^2.0.7"
}
}