-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
89 lines (89 loc) · 2.2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "type-ddd",
"version": "4.1.0",
"description": "This package provide utils file and interfaces to assistant build a complex application with domain driving design",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "ISC",
"author": "Alessandro Dev",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16.x <=22"
},
"keywords": [
"Complexity",
"NodeJS",
"Business Logic",
"DDD",
"Domain Driving Design",
"Typescript",
"DDD-Utils",
"Base Entity",
"Base Aggregate",
"Base Value Object",
"Use Cases",
"Domain Events",
"Clean Architecture"
],
"scripts": {
"prebuild": "rimraf ./dist && npm run check:circular-deps",
"build": "tsc -b -v packages",
"build:lerna": "lerna run build",
"test:prod": "NODE_ENV=production jest --silent --runInBand",
"test:dev": "jest --silent --runInBand",
"test:cov": "TYPES_DDD_LOGS=off jest --silent --runInBand --coverage",
"test": "TYPES_DDD_LOGS=off jest --silent --runInBand --coverage",
"test:verbose": "jest --runInBand",
"check:circular-deps": "madge --circular --extensions ts ./packages",
"prepublish:lib": "rimraf ./dist && npm run check:circular-deps",
"publish:lib": "npm publish",
"format:all": "npx prettier --write .",
"check:types": "tsc -v packages --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4lessandrodev/type-ddd.git"
},
"bugs": {
"url": "https://github.com/4lessandrodev/type-ddd/issues"
},
"homepage": "https://github.com/4lessandrodev/type-ddd/tree/main",
"peerDependencies": {
"rich-domain": "^1.25.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^22.5.2",
"@types/pino": "^7.0.5",
"husky": "^9.0.6",
"jest": "^27.5.1",
"lerna": "^8.1.3",
"lint-staged": "^15.0.1",
"madge": "^8.0.0",
"prettier": "^3.0.0",
"rich-domain": "1.25.1",
"rimraf": "^5.0.5",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^5.1.6"
},
"files": [
"dist/*",
"package.json",
"packages/*/*.js",
"packages/*/*.d.ts",
"README.md"
],
"lint-staged": {
"*": [
"npm run format:all",
"npx prettier --ignore-unknown --check"
],
"*.{ts,js}": [
"npm run check:circular-deps"
]
}
}