forked from veloss-labs/threads-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 KB
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": "thread-app",
"version": "0.0.1-beta.0",
"private": true,
"description": "template",
"keywords": [
"nextjs"
],
"license": "ISC",
"author": "OhMinsSup",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"build": "turbo build",
"build:lib": "turbo build:lib",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:push": "pnpm -F @thread/db db:push",
"db:studio": "pnpm -F @thread/db db:studio",
"dev": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"ui:add": "pnpm -F @thread/ui ui-add"
},
"prettier": "@thread/prettier-config",
"devDependencies": {
"@thread/prettier-config": "workspace:*",
"@turbo/gen": "^2.0.6",
"dotenv-cli": "^7.4.2",
"prettier": "^3.3.2",
"turbo": "^2.0.6",
"typescript": "^5.5.3"
},
"packageManager": "pnpm@9.0.5",
"engines": {
"bun": ">=1.0",
"node": ">=20.0"
}
}