-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.9 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.9 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
{
"name": "teste-backend",
"version": "1.0.0",
"description": "Projeto de avaliação de candidatos.",
"main": "index.ts",
"scripts": {
"build": "rimraf build/ && tsc -p . && link-module-alias",
"postbuild": "yarn run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.html build",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"test:coverage": "cross-env NODE_ENV=test jest --coverage --silent",
"start": "cross-env NODE_ENV=production node build/index.js",
"start:dev": "cross-env NODE_ENV=development nodemon --config nodemon.json",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"lint:format": "prettier --write \"src/**/*.ts\"",
"migration:generate": "yarn build && yarn typeorm migration:generate",
"migration:run": "yarn build && yarn typeorm migration:run"
},
"repository": {
"type": "git",
"url": "git+https://hvpsilva@bitbucket.org/hvpsilva/teste-backend.git"
},
"author": "Highlander Paiva <hvpaiva@outlook.com>",
"license": "ISC",
"homepage": "https://bitbucket.org/hvpsilva/teste-backend#readme",
"keywords": [
"Typescript",
"Clean Architecture",
"Node",
"Express"
],
"dependencies": {
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"cli-color": "^2.0.0",
"command-line-args": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"copyfiles": "^2.4.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dayjs": "^1.9.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.1.3",
"helmet": "^4.1.1",
"http-status-codes": "^2.1.4",
"link-module-alias": "^1.2.0",
"lodash": "^4.17.20",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typeorm": "^0.2.28",
"typescript-ioc": "^3.2.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/body-parser": "^1.19.0",
"@types/cli-color": "^2.0.0",
"@types/command-line-args": "^5.0.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.0",
"@types/glob": "^7.1.3",
"@types/helmet": "^0.0.48",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"supertest": "^5.0.0",
"swagger-express-ts": "^1.0.1",
"swagger-ui-dist": "^3.35.0",
"swagger-ui-express": "^4.1.4",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"_moduleAliases": {
"~": "build"
}
}