forked from t3-oss/create-t3-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.3 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
{
"name": "@ct3a/root",
"version": "0.0.0",
"description": "Quickest way to start a new web app with full stack typesafety",
"author": "Shoubhit Dash <shoubhit2005@gmail.com> (https://nexxel.dev)",
"maintainers": [
"Julius Marminge <julius0216@outlook.com> (https://jumr.dev)"
],
"type": "module",
"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"
],
"engines": {
"node": ">=14.16"
},
"packageManager": "pnpm@8.1.0",
"scripts": {
"typecheck": "turbo typecheck",
"build:cli": "turbo --filter=create-t3-app build",
"build:www": "turbo --filter=www build",
"build": "turbo build",
"start:cli": "turbo --filter=create-t3-app start",
"start:www": "turbo --filter=www start",
"dev:cli": "turbo --filter=create-t3-app dev",
"dev:www": "turbo --filter=www dev",
"clean": "turbo clean && rm -rf node_modules",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"format": "turbo format && prettier --write *.{cjs,md,json} --ignore-unknown --no-error-on-unmatched-pattern",
"format:check": "turbo format:check && prettier --check *.{cjs,md,json} --ignore-unknown --no-error-on-unmatched-pattern",
"check": "turbo lint typecheck format:check && manypkg check",
"release": "changeset version",
"pub:beta": "cd cli && pnpm pub:beta",
"pub:release": "cd cli && pnpm pub:release"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@manypkg/cli": "^0.20.0",
"@total-typescript/ts-reset": "^0.3.7",
"@types/eslint": "^8.21.3",
"@types/node": "^18.15.5",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^0.0.9",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-isaacscript": "^2.6.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.7",
"turbo": "^1.8.5",
"typescript": "^5.0.2"
}
}