-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.87 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
{
"name": "finance",
"version": "1.0.0",
"description": "Projeto criado apenas como referencia de uso!",
"repository": "https://github.com/ismaelalvesgit/node-express-finance.git",
"main": "/src/index.ts",
"scripts": {
"start": "node dist/src/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"build:tsc": "tsc -p tsconfig.prod.json && tscpaths -p tsconfig.prod.json -s . -o ./dist",
"build:docs": "copyfiles -u 1 docs/**/* dist/docs",
"build:assets": "copyfiles -u 1 src/public/**/* dist/src",
"build:views": "copyfiles -u 1 src/presentation/views/**/* dist/src",
"build:i18n": "copyfiles -u 1 src/presentation/http/middlewares/i18n/locales/**/* dist/src",
"build": "concurrently \"npm:build:tsc\" \"npm:build:docs\" \"npm:build:assets\" \"npm:build:views\" \"npm:build:i18n\"",
"setup:up": "npm run migrate:up && npm run seed:run",
"seed:run": "knex seed:run --env local",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"migrate:create": "knex migrate:make --env local",
"migrate:down": "knex migrate:down --env local",
"migrate:up": "knex migrate:latest --env local"
},
"keywords": [],
"author": "Ismael alves <cearaismael1997@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/i18n": "^0.13.6",
"@types/jest": "^29.5.2",
"@types/object-hash": "^3.0.2",
"@types/response-time": "^2.3.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chance": "^1.1.11",
"concurrently": "^8.2.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-plugin-jest": "^27.2.2",
"ioredis-mock": "^8.7.0",
"jest": "^29.5.0",
"nock": "^13.3.2",
"nodemon": "^1.14.9",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"tscpaths": "^0.0.9",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.0",
"@ismaelalves/logger": "^0.1.3",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"elastic-apm-node": "^3.47.0",
"express": "^4.18.2",
"helmet": "^7.0.0",
"hide-powered-by": "^1.1.0",
"http-status-codes": "^2.2.0",
"i18n": "^0.15.1",
"ioredis": "^5.3.2",
"joi": "^17.9.2",
"kafkajs": "^2.2.4",
"knex": "^2.4.2",
"mysql2": "^3.4.0",
"object-hash": "^3.0.0",
"ramda": "^0.29.0",
"reflect-metadata": "^0.1.13",
"response-time": "^2.3.2",
"socket.io": "^4.7.1",
"swagger-ui-express": "^4.6.3",
"tsyringe": "^4.8.0",
"x-xss-protection": "^2.0.0",
"yamljs": "^0.3.0"
}
}