generated from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
47 lines (47 loc) · 1.61 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
{
"name": "side-project-starter-kit",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=v20.13.1"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf .turbo node_modules dist",
"clean:workspaces": "turbo clean",
"db:docker:startup": "docker compose --profile db up -d",
"db:docker:shutdown": "docker compose --profile db down",
"app:docker:startup": "pnpm i && docker compose --profile dev up -d",
"app:docker:shutdown": "pnpm clean:workspaces && docker compose --profile dev down",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:migrate": "turbo db:migrate",
"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",
"prepare": "husky"
},
"dependencies": {
"@acme/eslint-config": "workspace:*",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@manypkg/cli": "^0.21.4",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-prisma": "^4.10.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"side-ui": "^0.18.7",
"tailwindcss-animated": "^1.1.2",
"tailwindcss-scrollbar": "^0.1.0",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
}
}