-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.91 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dev-gerenciador-agendamentos",
"version": "2.0.0",
"description": "Gerenciador responsável por processar agendamentos e produzir filas de processos (Producer)",
"license": "GPL-3.0-or-later",
"keywords": [
"clean architecture",
"clean code",
"tdd",
"ddd",
"solid",
"design patterns",
"node",
"typescript",
"jest"
],
"author": {
"name": "Mauricio Carvalho",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mauriciocarvalho01/gerenciador-filas.git"
},
"bugs": {
"url": "https://github.com/mauriciocarvalho01/gerenciador-filas/issues",
"email": "[email protected]"
},
"scripts": {
"pm2-start": "pm2 start ecosystem.config.cjs && pm2 logs",
"start": "node -r ./dist/main",
"dev": "ts-node-dev --respawn --transpile-only --clear -r dotenv/config --inspect=0.0.0.0:9229 src/main",
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig-build.json",
"prepare": "husky install",
"check": "npm-check -s -u",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm t -- --watch",
"test:staged": "npm t -- --findRelatedTests",
"test:coverage": "npm t -- --coverage",
"test:integration": "npm t -- --config ./jest.integration.config.js",
"test:coveralls": "npm run test:coverage && coveralls < coverage/lcov.info"
},
"dependencies": {
"@types/amqplib": "^0.10.1",
"amqplib": "^0.10.3",
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"multer": "^1.4.3",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@jest-mock/express": "^1.4.4",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/md5": "^2.3.2",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^16.7.13",
"@types/node-cron": "^3.0.7",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"coveralls": "^3.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^27.1.1",
"jest-mock-extended": "^2.0.1",
"lint-staged": "^11.1.2",
"mockdate": "^3.0.5",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"engines": {
"node": "^19.x"
}
}