-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1005 Bytes
/
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
{
"name": "hexagonal-example",
"version": "1.0.0",
"description": "hexagonal-example",
"main": "/dist/src/index.js",
"scripts": {
"build": "tsc",
"start:express": "npm run build && node dist/application/ports/inbound/http/express/index.js",
"dev:express": "ts-node src/application/ports/inbound/http/express/index.ts",
"start:fastify": "nodemon src/application/ports/inbound/http/fastify/index.ts",
"test": "clear && jest --passWithNoTests --no-cache --runInBand --verbose --coverage"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"@types/uuid": "^10.0.0",
"cd": "^0.3.3",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"express": "^4.17.3",
"fastify": "^3.27.4",
"fastify-plugin": "^3.0.1",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.1",
"uuid": "^11.0.5"
}
}