-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 972 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 972 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
32
33
34
35
36
37
{
"name": "node-edge-core",
"version": "0.1.0",
"private": true,
"description": "Reusable TypeScript service template for edge and integration services",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "npm run format && npm run lint && npm run typecheck && npm test"
},
"dependencies": {
"fastify": "5.8.2",
"zod": "4.3.6"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.5.0",
"eslint": "10.1.0",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vitest": "4.1.0"
}
}