-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.85 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": "stackkit",
"version": "0.1.0",
"private": true,
"description": "Production-ready project generator and module CLI for modern web applications",
"keywords": [
"cli",
"generator",
"nextjs",
"template",
"boilerplate",
"prisma",
"shadcn"
],
"repository": {
"type": "git",
"url": "https://github.com/tariqul420/stackkit.git"
},
"license": "MIT",
"author": "Tariqul Islam",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "pnpm --filter \"./apps/**\" build",
"dev": "pnpm --filter stackkit dev",
"clean": "pnpm --filter \"./apps/**\" clean && rm -rf node_modules",
"typecheck": "pnpm --filter \"./apps/**\" typecheck",
"lint": "pnpm --filter \"./apps/**\" lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "pnpm --filter stackkit test",
"test:create": "pnpm --filter stackkit test:create",
"test:add": "pnpm --filter stackkit test:add",
"test:doctor": "pnpm --filter stackkit test:doctor",
"test:list": "pnpm --filter stackkit test:list",
"test:version": "pnpm --filter stackkit test:version",
"test:help": "pnpm --filter stackkit test:help",
"test:help:create": "pnpm --filter stackkit test:help:create",
"test:help:add": "pnpm --filter stackkit test:help:add",
"test:help:doctor": "pnpm --filter stackkit test:help:doctor",
"test:help:list": "pnpm --filter stackkit test:help:list",
"test:docs": "cd apps/docs && pnpm run types:check"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.8",
"eslint": "^9.39.2",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"typescript-eslint": "^8.52.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}