-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"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",
"sideEffects": false,
"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:ci": "pnpm --filter stackkit test:ci",
"test:docs": "cd apps/docs && pnpm run types:check"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.9.3",
"eslint": "^9.39.4",
"prettier": "^3.8.4",
"turbo": "^2.5.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.61.1"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4"
}