-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.52 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
{
"name": "create-dtx-next-app",
"version": "1.6.0",
"description": "Create web application with the extended version of t3 stack by Devviantex",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devvianto605/create-dtx-next-app",
"directory": "cli"
},
"keywords": [
"create-dtx-next-app",
"init.tips",
"next.js",
"tailwind",
"shadcn",
"chakra",
"intl",
"typescript"
],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"create-dtx-next-app": "./dist/index.js"
},
"files": [
"dist",
"template",
"README.md",
"LICENSE",
"CHANGELOG.md",
".yarnrc.yml",
"package.json"
],
"engines": {
"node": ">=18.17.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": "npm run 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": "npm run build && npm publish --tag beta",
"pub:next": "npm run build && npm publish --tag next",
"pub:release": "npm run build && npm publish"
},
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.6.3",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"chalk": "5.2.0",
"commander": "^10.0.1",
"execa": "^7.2.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"ora": "6.3.1",
"sort-package-json": "^2.10.0"
},
"devDependencies": {
"@libsql/client": "^0.6.0",
"@next-auth/firebase-adapter": "^2.0.1",
"@prisma/client": "^5.14.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.39.0",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.12.12",
"mysql2": "^3.9.7",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"postgres": "^3.4.4",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"superjson": "^2.2.1",
"tailwindcss": "^3.4.3",
"tsup": "^6.7.0",
"type-fest": "^3.13.1",
"typescript": "^5.4.5",
"zod": "^3.23.8"
}
}