-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
82 lines (82 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
{
"name": "mycoder-monorepo",
"version": "0.10.1",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"start": "pnpm -r start",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"typecheck": "pnpm -r typecheck",
"lint": "eslint . --fix",
"format": "prettier . --write",
"clean": "rimraf **/dist",
"clean:all": "rimraf **/dist node_modules **/node_modules",
"cloc": "pnpm exec cloc * --exclude-dir=node_modules,dist,.vinxi,.output",
"gcloud-setup": "gcloud auth application-default login && gcloud config set account \"[email protected]\" && gcloud config set project drivecore-primary && gcloud config set run/region us-central1",
"cli": "cd packages/cli && node --no-deprecation bin/cli.js",
"commit": "cz",
"prepare": "husky",
"verify-release-config": "node scripts/verify-release-config.js",
"release": "pnpm verify-release-config && pnpm -r --workspace-concurrency=1 exec -- pnpm exec semantic-release -e semantic-release-monorepo"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint",
"pnpm format"
]
},
"dependencies": {
"rimraf": "^6.0.1"
},
"devDependencies": {
"@anolilab/semantic-release-pnpm": "^1.1.10",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2",
"eslint-plugin-prettier": "^5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"semantic-release": "^24.2.3",
"semantic-release-monorepo": "^8.0.2",
"typescript-eslint": "^8.23.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@prisma/client",
"@prisma/engines",
"bcrypt",
"core-js",
"core-js-pure",
"esbuild",
"msw",
"prisma"
]
}
}