forked from t3-oss/create-t3-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.48 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
{
"name": "@ct3a/root",
"version": "0.0.0",
"description": "Quickest way to start a new web app with full stack typesafety",
"author": "Shoubhit Dash <[email protected]> (https://nexxel.dev)",
"maintainers": [
"Julius Marminge <[email protected]> (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"
},
"scripts": {
"typecheck": "turbo run typecheck",
"build:cli": "turbo run --filter=create-t3-app build",
"build:www": "turbo run --filter=www build",
"build": "turbo run build",
"start:cli": "pnpm run --filter=create-t3-app start",
"start:www": "turbo run --filter=www start",
"dev:cli": "pnpm --filter=create-t3-app dev",
"dev:www": "turbo run --filter=www dev",
"clean": "find . -name node_modules -o -name .turbo -o -name dist -o -name build -type d -prune | xargs rm -rf",
"lint": "turbo run lint",
"format": "prettier --write --plugin-search-dir=. \"**/*.{ts,tsx,md,mdx,json,js,mjs,cjs,astro}\" --ignore-path .gitignore",
"format:check": "prettier --check --plugin-search-dir=. \"**/*.{ts,tsx,md,mdx,json,js,mjs,cjs,astro}\" --ignore-path .gitignore",
"check": "pnpm lint && pnpm format:check && pnpm typecheck",
"release": "changeset version",
"pub:beta": "cd cli && pnpm pub:beta",
"pub:next": "cd cli && pnpm pub:next",
"pub:release": "cd cli && pnpm pub:release",
"merge-main": "git checkout main && git pull && git checkout next && git pull && git checkout -b next-merge-$(date '+%Y-%m-%d') next && git merge main"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.3",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-turbo": "^0.0.3",
"eslint-plugin-astro": "^0.19.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "40.1.0",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.3",
"ts-node": "^10.9.1",
"turbo": "^1.4.3",
"typescript": "^4.7.4"
}
}