-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 856 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 856 Bytes
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
{
"name": "create-faststack-app",
"version": "0.1.0",
"description": "Scaffold a pnpm monorepo with React 19 + FastAPI + Turbo + Biome + Docker in seconds",
"type": "module",
"bin": {
"create-faststack-app": "./dist/index.js"
},
"files": ["dist", "templates"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"check": "biome check .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"create",
"scaffold",
"monorepo",
"react",
"fastapi",
"pnpm",
"turbo",
"biome",
"docker",
"fullstack"
],
"author": "prosdevlab",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.10.0",
"commander": "^13.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.0",
"tsup": "^8.5.0",
"typescript": "~5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
}
}