-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 788 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
31
{
"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",
"start": "NODE_ENV=production node --enable-source-maps dist/index.mjs",
"docker:build": "docker build . --tag node-app",
"docker:start": "docker run --rm node-app",
"format": "oxfmt",
"lint": "oxlint"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.12.2",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"tsdown": "^0.21.10",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}