-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 5.54 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 5.54 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
120
121
122
123
124
125
126
127
{
"name": "template-microservice",
"scripts": {
"helm:gen": "NODE_NO_WARNINGS=1 node script/helm/index.mjs",
"helm:gen:production": "NODE_NO_WARNINGS=1 node script/helm/index.mjs -e production --scan-routes",
"helm:gen:development": "NODE_NO_WARNINGS=1 node script/helm/index.mjs -e development --scan-routes",
"helm:gen:homologation": "NODE_NO_WARNINGS=1 node script/helm/index.mjs -e homologation --scan-routes",
"prebuild": "rimraf dist",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"lint:staged": "yarn lint-staged",
"lint": "yarn eslint src/** --fix",
"start:prod": "node dist/main",
"start:dev": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/main",
"start:debug": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify --inspect --poll --watch --clear src/main",
"scheduler:start": "node dist/main/scheduler.js",
"scheduler:dev": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/main/scheduler.ts",
"scheduler:debug": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify --inspect --poll --watch --clear src/main/scheduler.ts",
"server:start": "node dist/main/server.js",
"server:dev": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/main/server.ts",
"server:debug": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify --inspect --poll --watch --clear src/main/server.ts",
"consumer:start": "node dist/main/consumer.js",
"consumer:dev": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/main/consumer.ts",
"consumer:debug": "tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify --inspect --poll --watch --clear src/main/consumer.ts",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --verbose",
"test:unit": "yarn test --watch -c jest-unit.config.ts",
"test:integration": "yarn test --watch -c jest-integration.config.ts",
"test:unit:verbose": "yarn test:verbose --watch -c jest-unit.config.ts",
"test:integration:verbose": "yarn test:verbose --verbose --watch -c jest-integration.config.ts",
"test:coverage": "yarn test --coverage",
"prepare": "husky install",
"sonar": "docker run --rm --env-file .env -v $(pwd):/usr/src sonarsource/sonar-scanner-cli"
},
"keywords": [],
"author": "badass-team",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/amqplib": "^0.10.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/form-data": "^2.5.0",
"@types/jest": "^29.2.4",
"@types/knex": "^0.16.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.13",
"@types/node-schedule": "^2.1.0",
"@types/string-template": "^1.0.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.0",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"git-commit-msg-linter": "^4.4.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4",
"yaml": "^2.2.1",
"yargs": "13.2"
},
"dependencies": {
"@badass-team-code/formatted-cases-words": "^1.0.0",
"@elastic/ecs-winston-format": "^1.3.1",
"@elastic/elasticsearch": "^8.5.0",
"agentkeepalive": "^4.2.1",
"amqplib": "^0.10.3",
"axios": "^1.2.1",
"cors": "^2.8.5",
"cpf-cnpj-validator": "^1.0.3",
"cron-parser": "^4.7.1",
"cron-validator": "^1.3.1",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"elastic-apm-node": "^3.40.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"helmet": "^6.0.1",
"knex": "^2.3.0",
"mongodb": "^4.12.1",
"mongoose": "^6.8.0",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.0",
"reflect-metadata": "^0.1.13",
"string-template": "^1.0.0",
"tedious": "15.1.2",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"winston-elasticsearch": "^0.17.1",
"winston-transport": "^4.5.0",
"yup": "^0.32.11"
},
"buildDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"rimraf": "^3.0.2",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}