-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "@ct3na/root",
"version": "0.0.0",
"description": "Quickest way to start a new Nuxt web app with full stack typesafety",
"author": "Gabriel Fidder <[email protected]>",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gfidder/create-t3nuxt-app.git"
},
"keywords": [
"create-t3nuxt-app",
"nuxt",
"t3-stack",
"tailwind",
"tRPC",
"typescript"
],
"engines": {
"node": ">=14.16"
},
"packageManager": "[email protected]",
"scripts": {
"typecheck": "turbo typecheck",
"build:cli": "turbo --filter=create-t3nuxt-app build",
"build:www": "turbo --filter=www build",
"build": "turbo build",
"start:cli": "turbo --filter=create-t3nuxt-app start",
"start:www": "turbo --filter=www start",
"dev:cli": "turbo --filter=create-t3nuxt-app dev",
"dev:www": "turbo --filter=www dev",
"clean": "turbo clean && rm -rf node_modules",
"lint": "turbo lint",
"format": "turbo format && prettier --write *.{cjs,md,json}",
"format:check": "turbo format:check && prettier --check *.{cjs,md,json}",
"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.2",
"@manypkg/cli": "^0.20.0",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-turbo": "^0.0.7",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-isaacscript": "^2.3.2",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"turbo": "^1.9.6",
"typescript": "^5.0.4"
}
}