forked from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "dream-stack",
"private": true,
"homepage": "https://github.com/olehmelnyk/dream-stack",
"engines": {
"node": ">=v18.13.0",
"yarn": "please-use-pnpm",
"npm": "please-use-pnpm",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "pnpm -F db dev",
"dev": "turbo dev --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"storybook": "turbo storybook"
},
"dependencies": {
"@acme/eslint-config": "^0.1.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@manypkg/cli": "^0.20.0",
"@total-typescript/ts-reset": "^0.4.2",
"@types/prettier": "^2.7.3",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"turbo": "^1.10.7",
"typescript": "^5.1.6"
}
}