-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.39 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.39 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "servest-monorepo",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"homepage": "https://servest.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-rashedin/servest.git"
},
"workspaces": [
"app/*",
"packages/*"
],
"keywords": [
"backend",
"cli",
"scaffolding",
"express",
"django",
"laravel",
"typescript",
"project-generator"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"lint:packages": "eslint --cache packages",
"lint:app": "eslint --cache app",
"lint": "pnpm lint:packages && pnpm lint:app",
"typecheck": "tsc -p tsconfig.base.json && pnpm -r --parallel run typecheck",
"test": "vitest run",
"build": "pnpm -r --filter='./packages/*' run build",
"publish:create-servest": "pnpm --filter create-servest publish --access public",
"publish:servest": "pnpm --filter servest publish --access public"
},
"devDependencies": {
"@clack/prompts": "^0.11.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"cross-spawn": "^7.0.6",
"eslint": "^9.33.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-regexp": "^2.10.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.1",
"globals": "^16.3.0",
"lint-staged": "^16.1.5",
"mri": "^1.2.0",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"tsdown": "^0.16.6",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/*/{src,types}/**/*.{ts,tsx,js,jsx}": [
"eslint --cache --fix"
],
"packages/**/*.d.ts": [
"eslint --cache --fix"
],
"app/**/*.{ts,tsx,js,jsx}": [
"eslint --cache --fix"
]
},
"packageManager": "pnpm@10.15.1",
"dependencies": {
"global": "link:C:/Users/HP/AppData/Local/pnpm/global/5/node_modules/global"
}
}