-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 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
58
{
"name": "node-flow",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git@github.com:WayneGongCN/node-flow.git"
},
"author": "wayne <me@waynegong.cn>",
"license": "MIT",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"clean": "lerna clean && rm -fr ./node_modules",
"commit": "git-cz",
"lint": "lerna run lint",
"test": "lerna run test",
"build": "lerna run build --skip-nx-cache",
"prerelease": "lerna version prerelease --conventional-commits --conventional-prerelease",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-jest": "^28.1.3",
"commitizen": "^4.2.5",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^26.7.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lerna": "^5.3.0",
"lint-staged": "^13.0.3",
"nx": "^14.5.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.{ts,js}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}