-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "clean-architecture-model-ts",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"clean": "rm -rf dist/",
"dev": "NODE_ENV=development ts-node -r dotenv/config src/app.ts | pino-pretty",
"dev:watch": "NODE_ENV=development ts-node-dev --respawn -r dotenv/config src/app.ts | pino-pretty",
"start": "rm -rf dist/ && tsc -p ./tsconfig.json && node -r dotenv/config dist/app.js"
},
"keywords": [],
"author": "Luis Neira",
"license": "ISC",
"dependencies": {
"@godaddy/terminus": "^4.9.0",
"@mikro-orm/core": "^5.6.8",
"@mikro-orm/postgresql": "^5.6.8",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"got": "^11.8.3",
"http-errors": "^1.8.1",
"joi": "^17.6.0",
"make-promises-safe": "^5.1.0",
"mariadb": "^2.5.5",
"module-alias": "^2.2.2",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"pino": "^7.1.0",
"pino-http": "^6.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.9.0",
"shallow-equal-object": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.25",
"@types/http-errors": "^1.8.1",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.11.9",
"@types/pino-http": "^5.8.1",
"@types/uuid": "^8.3.4",
"pino-pretty": "^7.2.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
}
}