-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 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
59
60
61
62
{
"name": "mincloudx",
"private": true,
"description": "MinCloud Ecosystem Library Tools",
"homepage": "https://github.com/anran758/mincloudx#readme",
"author": "anran758 <anran758@gmail.com>",
"license": "MIT",
"nx": {},
"engines": {
"node": ">=18"
},
"scripts": {
"pre-commit": "pnpm lint-staged",
"postinstall": "husky install",
"release": "lerna publish --no-private",
"build": "pnpm -r --filter \"./packages/*\" run build",
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"check-format": "prettier --list-different .",
"format": "prettier --write .",
"test": "node --test integration/**/*.test.*"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs,jsx,json,css}": [
"pnpm format",
"pnpm lint"
],
"*.md": [
"pnpm format"
]
},
"cspell": {
"ignoreWords": [
"mincloud",
"mincloudx",
"faas",
"baas"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"chalk": "^5.3.0",
"commitizen": "^4.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lerna": "^6.4.1",
"lint-staged": "^13.2.1",
"nx": "^15.9.4",
"prettier": "^2.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"jest": "^29.7.0"
}
}