-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.05 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.05 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "typescript-api-starter",
"description": "RESTful API template with Typescript, TypeORM, ExpressJs",
"readmeFilename": "README.md",
"license": "MIT",
"keywords": [
"express",
"jwt",
"node",
"routing-controllers",
"starter",
"template",
"boilerplate",
"typeorm",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/solutosoft/typescript-api-starter"
},
"bugs": {
"url": "https://github.com/solutosoft/typescript-api-starter/issues"
},
"author": {
"name": "Leandro Guindani Gehlen",
"email": "leandrogehlen@gmail.com"
},
"bin": "lib/cli.js",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint \"src/**/*\" \"tests/**/*\"",
"build": "gulp",
"serve": "npm run build && ts-node src/index.ts",
"cli": "ts-node src/cli.ts",
"test": "cross-env NODE_ENV=testing jest --collect-coverage --forceExit --runInBand --verbose"
},
"engines": {
"node": "12"
},
"dependencies": {
"@caporal/core": "^2.0.2",
"bcrypt": "^5.0.1",
"build-url": "^6.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^8.0.8",
"express-rate-limit": "^5.5.1",
"gulp-typescript": "^6.0.0-alpha.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^9.0.0",
"lodash.omit": "^4.5.0",
"luxon": "^1.28.1",
"mysql": "^2.18.1",
"nocache": "^3.0.1",
"nodemailer": "^6.7.1",
"pug": "^3.0.0",
"rand-token": "^1.0.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"typeorm": "^0.2.41",
"typeorm-naming-strategies": "^2.0.0",
"typeorm-seeding": "^1.6.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/email-templates": "^8.0.4",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/faker": "^5.5.9",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash.omit": "^4.5.6",
"@types/luxon": "^1.27.1",
"@types/mysql": "^2.15.19",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.8.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"express": "^4.18.2",
"faker": "^5.1.0",
"gulp": "^4.0.2",
"jest": "^26.6.3",
"jwt-decode": "^3.1.2",
"supertest": "^6.1.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^3.8.0"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/tests/setup.ts"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/migrations/",
"/lib/"
]
},
"version": "0.1.0"
}