create-tnt-stack 0.5.1 → 0.5.2-beta.4072da9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +87 -87
package/package.json
CHANGED
@@ -1,89 +1,89 @@
|
|
1
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
|
-
|
2
|
+
"name": "create-tnt-stack",
|
3
|
+
"version": "0.5.2-beta.4072da9",
|
4
|
+
"description": "Create web application with the TNT-Powered stack",
|
5
|
+
"license": "MIT",
|
6
|
+
"repository": {
|
7
|
+
"type": "git",
|
8
|
+
"url": "https://github.com/slickyeet/create-tnt-stack",
|
9
|
+
"directory": "cli"
|
10
|
+
},
|
11
|
+
"keywords": [
|
12
|
+
"create-tnt-stack",
|
13
|
+
"tnt-stack",
|
14
|
+
"typescript",
|
15
|
+
"next.js",
|
16
|
+
"tailwind"
|
17
|
+
],
|
18
|
+
"type": "module",
|
19
|
+
"exports": "./dist/index.js",
|
20
|
+
"bin": {
|
21
|
+
"create-tnt-stack": "./dist/index.js"
|
22
|
+
},
|
23
|
+
"files": [
|
24
|
+
"dist",
|
25
|
+
"template",
|
26
|
+
"README.md",
|
27
|
+
"LICENSE",
|
28
|
+
"package.json"
|
29
|
+
],
|
30
|
+
"engines": {
|
31
|
+
"node": ">=18"
|
32
|
+
},
|
33
|
+
"scripts": {
|
34
|
+
"dev": "tsup --watch",
|
35
|
+
"build": "tsup",
|
36
|
+
"start": "node dist/index.js",
|
37
|
+
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write",
|
38
|
+
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check",
|
39
|
+
"typecheck": "tsc",
|
40
|
+
"clean": "rm -rf dist .turbo node_modules",
|
41
|
+
"link": "bun run build && npm link",
|
42
|
+
"release": "changeset version",
|
43
|
+
"pub:beta": "bun run build && npm publish --tag beta",
|
44
|
+
"pub:release": "bun run build && npm publish"
|
45
|
+
},
|
46
|
+
"dependencies": {
|
47
|
+
"@inquirer/prompts": "^7.4.0",
|
48
|
+
"chalk": "^5.4.1",
|
49
|
+
"commander": "^13.1.0",
|
50
|
+
"execa": "^9.5.2",
|
51
|
+
"fs-extra": "^11.3.0",
|
52
|
+
"gradient-string": "^3.0.0",
|
53
|
+
"ora": "^8.2.0",
|
54
|
+
"sort-package-json": "^3.0.0"
|
55
|
+
},
|
56
|
+
"devDependencies": {
|
57
|
+
"@auth/prisma-adapter": "^2.8.0",
|
58
|
+
"@eslint/eslintrc": "^3.3.1",
|
59
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
60
|
+
"@payloadcms/db-sqlite": "^3.33.0",
|
61
|
+
"@payloadcms/db-vercel-postgres": "^3.33.0",
|
62
|
+
"@payloadcms/next": "^3.33.0",
|
63
|
+
"@payloadcms/payload-cloud": "^3.33.0",
|
64
|
+
"@payloadcms/richtext-lexical": "^3.33.0",
|
65
|
+
"@prisma/client": "^6.5.0",
|
66
|
+
"@t3-oss/env-nextjs": "^0.12.0",
|
67
|
+
"@types/fs-extra": "^11.0.4",
|
68
|
+
"@types/node": "^22",
|
69
|
+
"@types/react": "^19",
|
70
|
+
"@types/react-dom": "^19",
|
71
|
+
"eslint": "^9.22.0",
|
72
|
+
"eslint-config-next": "^15.2.4",
|
73
|
+
"graphql": "^16.10.0",
|
74
|
+
"next": "^15.2.4",
|
75
|
+
"next-auth": "^5.0.0-beta.25",
|
76
|
+
"payload": "^3.33.0",
|
77
|
+
"prettier": "^3.5.3",
|
78
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
79
|
+
"prisma": "^6.5.0",
|
80
|
+
"react": "^19.0.0",
|
81
|
+
"react-dom": "^19.0.0",
|
82
|
+
"sharp": "^0.34.1",
|
83
|
+
"tailwindcss": "^4.0.17",
|
84
|
+
"tsup": "^8.4.0",
|
85
|
+
"type-fest": "^4.37.0",
|
86
|
+
"typescript": "^5.8.2",
|
87
|
+
"zod": "^3.24.2"
|
88
|
+
}
|
89
89
|
}
|