-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 938 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": "ddd_hexagonal_architecture",
"version": "1.0.0",
"description": "A TypeScript project using Domain-Driven Design and Hexagonal Architecture.",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"test:unit": "jest"
},
"author": "@elemikelo",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"glob": "^9.3.2",
"mongoose": "^7.0.3",
"node-dependency-injection": "^3.0.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.9",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}