-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "@beincom/domain",
"version": "0.1.7",
"description": "Domain Driven Design (@domain package)",
"keywords": [
"typescript",
"ddd",
"domain driven design",
"nodejs"
],
"author": "The Van <thevan@evol.vn>",
"homepage": "",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Beincomm/typeddd.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "husky install",
"clean": "lerna run clean",
"build": "lerna run build",
"release": "yarn build && lerna publish from-package --contents dist --force-publish",
"publish": "lerna publish from-package --contents dist --force-publish",
"publish:next": "lerna publish from-package --contents dist --dist-tag next --force-publish",
"release:next": "lerna run compile && yarn publish:next",
"release:tilde": "lerna run copy -- -- --tilde",
"test": "jest --runInBand",
"tsc-check-tests": "tsc --noEmit --project tests/tsconfig.json",
"coverage": "rimraf coverage && yarn test --coverage",
"lint": "eslint packages/**/*.ts"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint packages/**/*.ts --fix"
]
},
"engines": {
"node": ">= 16.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/transform": "^29.1.2",
"@side/jest-runtime": "^1.0.2",
"@types/jest": "^29.1.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-runtime": "^29.1.2",
"lerna": "^5.5.4",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}