-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "server",
"private": true,
"type": "module",
"scripts": {
"build": "tsdown",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "pnpm env:run tsx watch src/server.ts",
"env:copy-example": "shx -- cp -n .env.example .env",
"env:remove": "shx -- rm -f .env",
"env:run": "dotenv --",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"start": "NODE_ENV=production pnpm env:run node dist/server.js",
"typecheck": "tsc --noEmit"
},
"prettier": "@repo/prettier-config",
"dependencies": {
"@hono/node-server": "catalog:",
"@repo/api": "workspace:*",
"@repo/auth": "workspace:*",
"@repo/db": "workspace:*",
"hono": "catalog:",
"valibot": "catalog:"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/prettier-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "catalog:",
"dotenv-cli": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"shx": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:"
}
}