-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.34 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
84
85
86
{
"name": "express-typescript-boilerplate",
"version": "1.0.0",
"description": "Express - Typescript Boilerplate",
"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/srajandev98/express-typescript-boilerplate.git"
},
"keywords": [
"boilerplay",
"cron",
"jobs",
"js",
"javascript",
"typescript",
"node",
"express"
],
"author": "Santiago Quinteros",
"license": "ISC",
"dependencies": {
"@useoptic/express-middleware": "^0.0.5",
"agenda": "^3.1.0",
"agendash": "^2.1.1",
"argon2": "^0.27.0",
"body-parser": "^1.19.0",
"celebrate": "^13.0.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"event-dispatch": "^0.4.1",
"eventemitter3": "^4.0.7",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-jwt": "^6.0.0",
"form-data": "^2.3.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mailgun.js": "3.3.0",
"method-override": "^3.0.0",
"moment": "^2.29.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.10.6",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/agenda": "^2.0.9",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.11.0",
"tslint": "^5.20.1",
"typescript": "^4.0.3"
},
"bugs": {
"url": "https://github.com/srajandev98/express-typescript-boilerplate/issues"
},
"homepage": "https://github.com/srajandev98/express-typescript-boilerplate#readme"
}