-
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.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.6 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": "cipher-box",
"version": "0.45.2",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "22"
},
"scripts": {
"dev": "concurrently --kill-others -n api,web -c blue,green \"pnpm --filter @cipherbox/api dev\" \"pnpm --filter @cipherbox/web dev\"",
"build": "pnpm -r run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "markdownlint '**/*.md' --ignore node_modules --ignore '**/node_modules/**'",
"lint:md:fix": "markdownlint '**/*.md' --ignore node_modules --ignore '**/node_modules/**' --fix",
"lint:tracker-refs": "node scripts/check-tracker-refs.mjs",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r --if-present run test",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.18.0",
"@types/node": "^22.19.7",
"concurrently": "^9.2.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.4.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.21.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"esbuild"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,mts,cts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.md": [
"markdownlint --fix",
"prettier --write"
]
}
}