This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
generated from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 1.49 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
{
"name": "waggle-dance",
"private": true,
"engines": {
"node": "20.x"
},
"packageManager": "[email protected]",
"scripts": {
"prebuild": "node --experimental-modules ./build-tools/prebuild.mjs",
"env:code:sync": "SKIP_ENV_VALIDATION=1 node --experimental-modules ./build-tools/env-sync-code.mjs",
"env:vercel:push": "node --experimental-modules ./build-tools/env-sync-vercel.mjs push",
"env:vercel:clean": "node --experimental-modules ./build-tools/env-sync-vercel.mjs clean",
"build": "pnpm prebuild && turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"dev": "turbo dev --parallel",
"start": "turbo start",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check && turbo type-check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"lint:ws": "pnpm dlx sherif@latest"
},
"prettier": "@acme/prettier-config",
"dependencies": {
"@acme/eslint-config": "^0.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@manypkg/cli": "^0.21.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"turbo": "^1.10.16",
"typescript": "^5.3.2",
"zod": "^3.22.4"
}
}