-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "@ddd-master/main",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "turbo run test",
"build:all": "turbo build:clean && turbo run build",
"build:clean": "turbo run build:clean",
"build:dev": "turbo run build:dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"publish:all": "turbo run new:package --concurrency=1",
"bump:patch:all": "npm version patch --git-tag-version false && turbo run bump:patch --concurrency=1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@faker-js/faker": "^7.6.0",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-decorator-position": "^5.0.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.1.0",
"husky": "8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"rimraf": "^4.0.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"turbo": "^1.9.6",
"typescript": "^4.9.4"
},
"volta": {
"node": "18.12.1"
},
"engines": {
"node": ">=16.0.0 <19",
"npm": ">=8.0.0"
},
"workspaces": [
"libs/*",
"examples/*"
]
}