-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 725 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 725 Bytes
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
{
"name": "node-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx watch --clear-screen=false src/index.ts",
"build": "tsdown",
"build:docker": "docker build .",
"start": "NODE_ENV=production node --enable-source-maps dist/index.mjs",
"format": "oxfmt",
"lint": "oxlint"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.19.15",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"tsdown": "^0.21.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}