-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "create-ev0-app",
"version": "0.0.0",
"description": "The best CLI for creating, building, and deploying your Next.js apps",
"author": {
"name": "itsdrvgo",
"url": "https://itsdrvgo.me/"
},
"repository": {
"type": "git",
"url": "https://github.com/itsdrvgo/create-ev0-app.git",
"directory": "apps/cli"
},
"keywords": [
"cli",
"ev0",
"nextjs",
"create-next-app",
"next",
"react",
"react-framework",
"reactjs",
"typescript",
"t3-app",
"t3",
"tailwindcss",
"drizzle",
"prisma",
"supabase",
"vercel"
],
"license": "MIT",
"scripts": {
"build": "turbo build",
"build:cli": "cd apps/cli && bun run build",
"build:web": "turbo --filter=web build",
"dev": "turbo dev",
"dev:cli": "cd apps/cli && bun run dev",
"dev:web": "turbo --filter=web dev",
"start": "turbo start",
"start:cli": "cd apps/cli && bun run start",
"start:web": "turbo --filter=web start",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"pub:beta": "cd apps/cli && bun run pub:beta",
"pub:release": "cd apps/cli && bun run pub:release"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18.17.0"
},
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
]
}