generated from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.94 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": "turbo-lucia-starter",
"private": true,
"engines": {
"node": ">=22.11"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"preview": "turbo run start",
"dev": "turbo dev",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"clean:cache": "turbo run clean:cache",
"clean:dist": "turbo run clean:dist",
"db:generate": "pnpm -F db generate",
"db:migrate": "pnpm -F db migrate",
"db:push": "pnpm -F db push",
"db:seed": "pnpm -F db seed",
"db:studio": "pnpm -F db studio",
"typecheck": "turbo run typecheck",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "sherif",
"lint:ws:fix": "sherif --fix",
"ui-add": "turbo run ui-add",
"deps:check": "pnpm outdated -r",
"deps:update": "pnpm update -i -L -r",
"postinstall": "pnpm lint:ws",
"test": "vitest --project=unit",
"test:ui": "vitest --ui",
"prune": "turbo prune --docker",
"turbo": "turbo",
"test:e2e:nextjs": "pnpm -F nextjs test:e2e",
"playwright:init": "pnpm -F playwright test:init"
},
"devDependencies": {
"@acme/prettier-config": "workspace:*",
"@vitest/coverage-v8": "2.1.8",
"prettier": "3.4.2",
"sherif": "1.1.1",
"tailwindcss": "3.4.17",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"prettier": "@acme/prettier-config",
"pnpm": {
"overrides": {
"minimist@<0.2.1": ">=0.2.1",
"minimist@<0.2.4": ">=0.2.4",
"axios@<0.28.0": ">=0.28.0",
"cookie@<0.7.0": ">=0.7.0",
"dset@<3.1.4": ">=3.1.4"
}
}
}