forked from t3-oss/create-t3-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.18 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
{
"name": "create-t3-app",
"version": "5.0.0-beta.4",
"description": "Create web application with the t3 stack",
"author": "Shoubhit Dash <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/t3-oss/create-t3-app.git"
},
"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"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"typecheck": "tsc",
"build": "tsup src/index.ts --format esm --clean --sourcemap --minify --metafile",
"dev": "tsup src/index.ts --format esm --watch --clean --onSuccess \"node dist/index.js\"",
"start": "node dist/index.js",
"lint": "eslint src/ --fix",
"lint:check": "eslint src/",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx,json}\"",
"prepare": "husky install",
"release": "standard-version",
"pub": "npm run build && npm publish"
},
"dependencies": {
"chalk": "5.0.1",
"commander": "^9.3.0",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"gradient-string": "^2.0.1",
"inquirer": "^9.0.0",
"ora": "6.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"tsup": "^6.1.2",
"type-fest": "^2.14.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,mdx}": [
"prettier --write"
]
}
}