-
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.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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": "crud-api",
"version": "1.0.0",
"description": "Simple CRUD API for a Product Catalog using an in-memory database underneath",
"scripts": {
"build": "tsc",
"start:dev": "tsx watch src/main.ts",
"start:prod": "npm run build && node dist/main.js",
"start:multi": "tsx src/cluster/master.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maiano/crud-api.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/maiano/crud-api/issues"
},
"homepage": "https://github.com/maiano/crud-api#readme",
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/node": "^25.5.0",
"pino-pretty": "^13.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"dotenv": "^17.3.1",
"fastify": "^5.8.2",
"zod": "^4.3.6"
}
}