-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@node-ts/ddd-example",
"version": "0.1.7",
"description": "An example solution that shows how to create a domain driven design framework for enterprise grade applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/node-ts/ddd.git",
"author": "Andrew den Hertog <andrew.denhertog@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc --project tsconfig.json --stripInternal --outDir dist/ --declaration",
"dev": "nodemon --watch ./src -e ts --exec \"pnpm dev:run\"",
"dev:run": "pnpm run build && node dist/index.js",
"lint": "pnpm lint:ts",
"lint:ts": "tslint --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "pnpm lint --fix",
"publish:packages": "npm publish --access=public",
"test": "jest \"(src\\/.+\\.|/)spec\\.ts$\"",
"test:coverage": "pnpm run test --coverage",
"test:ci": "pnpm run test -w 8",
"test:watch": "pnpm run test --watch"
},
"keywords": [
"typescript",
"ddd",
"domain driven design",
"distributed systems",
"enterprise framework",
"CQRS",
"ES"
],
"devDependencies": {
"@node-ts/code-standards": "^0.0.10",
"@node-ts/logger-core": "^0.1.1",
"@types/jest": "^27.5.1",
"inversify": "^6.0.1",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.2",
"tslint": "^6.1.3",
"typemoq": "^2.1.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@node-ts/logger-core": "^0.0.9",
"inversify": "^5.0.1"
},
"dependencies": {
"@node-ts/bus-messages": "^1.0.4",
"@node-ts/ddd": "workspace:^0.1.6",
"@node-ts/ddd-types": "workspace:^0.1.4",
"change-case": "^4.1.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.26"
}
}