-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
98 lines (98 loc) · 2.73 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
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
90
91
92
93
94
95
96
97
98
{
"name": "create-t3-app",
"version": "7.38.0",
"description": "Create web application with the t3 stack",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/t3-oss/create-t3-app.git",
"directory": "cli"
},
"keywords": [
"create-t3-app",
"init.tips",
"next.js",
"t3-stack",
"tailwind",
"tRPC",
"typescript"
],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"create-t3-app": "./dist/index.js"
},
"files": [
"dist",
"template",
"README.md",
"LICENSE",
"CHANGELOG.md",
".yarnrc.yml",
"package.json"
],
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"typecheck": "tsc",
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist .turbo node_modules",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check",
"release": "changeset version",
"pub:beta": "pnpm build && npm publish --tag beta",
"pub:next": "pnpm build && npm publish --tag next",
"pub:release": "pnpm build && npm publish"
},
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.6.3",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"chalk": "5.2.0",
"commander": "^10.0.1",
"execa": "^7.2.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"ora": "6.3.1",
"sort-package-json": "^2.10.0"
},
"devDependencies": {
"@auth/drizzle-adapter": "^1.1.0",
"@auth/prisma-adapter": "^1.6.0",
"@libsql/client": "^0.9.0",
"@planetscale/database": "^1.19.0",
"@prisma/adapter-planetscale": "^5.21.1",
"@prisma/client": "^5.21.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-query": "^5.59.16",
"@trpc/client": "11.0.0-rc.604",
"@trpc/next": "11.0.0-rc.604",
"@trpc/react-query": "11.0.0-rc.604",
"@trpc/server": "11.0.0-rc.604",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.17.1",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.33.0",
"mysql2": "^3.11.0",
"next": "^15.0.2",
"next-auth": "^4.24.10",
"postgres": "^3.4.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.21.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"superjson": "^2.2.1",
"tailwindcss": "^3.4.14",
"tsup": "^6.7.0",
"type-fest": "^3.13.1",
"typescript": "^5.6.3",
"zod": "^3.23.8"
}
}