-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "ddd-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"predev": "npm run build",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/main.ts",
"test": "jest --runInBand",
"build": "tsc",
"test:e2e": "jest --runInBand -c ./jest.e2e.config.ts",
"start": "node ./dist/src/main"
},
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"module-alias": "^2.2.3",
"reflect-metadata": "^0.1.13",
"rich-domain": "^1.25.0",
"types-ddd": "3.11.0-beta"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^28.1.6",
"@types/node": "^18.17.1",
"@types/supertest": "^2.0.12",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
},
"_moduleAliases": {
"@types": "./dist/types/index",
"@product": "./dist/src/contexts/product",
"@invoice": "./dist/src/contexts/invoice"
}
}