-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) Β· 841 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) Β· 841 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
{
"name": "nodejs-template",
"version": "1.0.0",
"description": "A modern, lightning-fast Node.js starter template with TypeScript, pnpm, and tsx for zero-build backend development. Ready-to-use π scripts for start, dev, build plus β
type safety & IntelliSense",
"main": "app.ts",
"scripts": {
"dev": "tsx watch --clear-screen=false --inspect-brk --env-file-if-exists=.env app.ts",
"start": "tsx --env-file-if-exists=.env app.ts",
"build": "tsc",
"serve": "node --env-file=.env dist/app.js"
},
"keywords": [
"nodejs",
"typescript",
"tsx",
"pnpm",
"template"
],
"author": "Paradox",
"license": "MIT",
"devDependencies": {
"@tsconfig/node-ts": "^23.6.1",
"@types/node": "^24.6.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.17.1"
}