-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
40
41
{
"name": "pragmatic-nodejs-api",
"version": "1.0.0",
"description": "A pragmatic foundation for building maintainable REST APIs with Node.js, Express, and TypeScript.",
"main": "app.js",
"scripts": {
"dev": "tsx --watch src/app.ts",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/app.js",
"biome:lint": "biome lint ./src",
"biome:lint:fix": "biome lint --write ./src",
"biome:format": "biome format ./src",
"biome:format:fix": "biome format --write ./src"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@tsconfig/node24": "^24.0.3",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.2.1",
"zod": "^4.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poschuler/pragmatic-nodejs-api.git"
},
"bugs": {
"url": "https://github.com/poschuler/pragmatic-nodejs-api/issues"
},
"homepage": "https://github.com/poschuler/pragmatic-nodejs-api#readme"
}