forked from santiq/bulletproof-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bulletproof-nodejs",
"version": "1.0.0",
"description": "Bulletproof node.js",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"heroku-postbuild": "npm run build",
"start": "nodemon",
"inspect": "nodemon --inspect src/app.ts",
"test": "jest",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santiq/bulletproof-nodejs.git"
},
"keywords": [
"boilerplay",
"cron",
"jobs",
"js",
"javascript",
"typescript",
"node",
"express"
],
"author": "Santiago Quinteros",
"license": "ISC",
"dependencies": {
"agenda": "^2.0.2",
"agendash": "^1.0.0",
"argon2": "^0.21.0",
"body-parser": "^1.18.2",
"celebrate": "^9.1.0",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.0",
"event-dispatch": "^0.4.1",
"eventemitter3": "^3.1.0",
"express": "^4.16.2",
"express-basic-auth": "^1.2.0",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.13",
"mailgun-js": "^0.22.0",
"method-override": "^3.0.0",
"moment": "^2.23.0",
"moment-timezone": "^0.5.23",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.12",
"typedi": "^0.8.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/agenda": "^2.0.4",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.8",
"@types/lodash": "^4.14.118",
"@types/mongoose": "^5.3.17",
"@types/node": "^10.14.8",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"nodemon": "^2.0.1",
"prettier": "^1.17.0",
"ts-jest": "^24.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"bugs": {
"url": "https://github.com/santiq/bulletproof-nodejs/issues"
},
"homepage": "https://github.com/santiq/bulletproof-nodejs#readme"
}