-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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": "task-api",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "env-cmd ./.env nodemon src/app.js",
"debug": "env-cmd ./.env nodemon --inspect-brk src/app.js",
"create_client": "npm run cli client create",
"clear_tokens": "npm run cli token delete --access --refresh --expired",
"cli": "env-cmd ./.env node bin/cli",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"aws-sdk": "^2.441.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.4",
"cli-table3": "^0.5.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-oauth-server": "^2.0.0",
"express-paginate": "^1.0.0",
"express-rate-limit": "^3.5.0",
"express-redis-cache": "^1.1.3",
"faker": "^4.1.0",
"mongoose": "^5.5.0",
"multer": "^1.4.1",
"nodemailer": "^6.1.1",
"pug": "^2.0.3",
"qs": "^6.7.0",
"rate-limit-redis": "^1.6.0",
"redis": "^2.8.0",
"sharp": "^0.22.0",
"url": "^0.11.0",
"validator": "^10.11.0",
"yargonaut": "^1.1.4",
"yargs": "^13.2.2"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"nodemon": "^1.18.11"
},
"bin": "./bin/cli",
"engines": {
"node": "^11.0.0"
}
}