generated from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "fissa-house-party",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@9.0.4",
"scripts": {
"test": "turbo test",
"build": "turbo build",
"clean": "rm -rf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:push:force": "turbo db:push:force db:generate",
"dev": "turbo dev --parallel",
"dev:ios": "turbo dev:ios",
"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",
"postinstall": "turbo db:generate"
},
"prisma": {
"schema": "packages/db/prisma/schema.prisma"
},
"dependencies": {
"@fissa/eslint-config": "*",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@manypkg/cli": "0.21.4",
"@total-typescript/ts-reset": "0.5.1",
"eslint": "8.57.0",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.2.8",
"turbo": "1.13.3",
"typescript": "5.4.5",
"vitest": "1.6.0"
}
}