-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "template-base",
"version": "0.0.1-beta.0",
"private": true,
"description": "template",
"keywords": [
"nestjs",
"remix",
"turbo",
"template",
"deploy"
],
"license": "ISC",
"author": "OhMinsSup",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"build": "turbo build",
"build:pkg": "turbo build:pkg",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"codegen:api": "turbo -F @template/api-types codegen",
"db:push": "turbo -F @template/db push",
"db:studio": "turbo -F @template/db studio",
"dev": "turbo watch dev --continue",
"dev:api-server": "turbo watch dev -F @template/api-server",
"dev:remix": "turbo watch dev -F @template/remix...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"postinstall": "pnpm lint:ws",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"prettier": "@template/prettier-config",
"devDependencies": {
"@template/prettier-config": "workspace:*",
"@turbo/gen": "^2.1.1",
"dotenv-cli": "^7.4.2",
"prettier": "catalog:",
"turbo": "^2.3.3",
"typescript": "catalog:"
},
"packageManager": "[email protected]",
"engines": {
"bun": ">=1.0",
"node": ">=20.16.0"
}
}