forked from BoscoDomingo/typescript-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "typescript-skeleton-ddd",
"version": "1.0.0",
"type": "module",
"description": "A TypeScript skeleton for DDD projects.",
"main": "./dist/src/main.js",
"files": [
"src",
"dist"
],
"private": true,
"scripts": {
"start": "node --env-file=.env ./dist/src/app.js",
"dev": "tsx watch --clear-screen=false --env-file=.env ./src/app.ts",
"build": "tsc -p tsconfig.build.json",
"lint": "biome check",
"format": "biome check --write",
"test": "glob -c \"FASTIFY_AUTOLOAD_TYPESCRIPT=1 tsx --tsconfig ./test/tsconfig.json --env-file .env --env-file .env.test --test\" \"./test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexHHPS/typescript-ddd-hexagonal-ddd.git"
},
"keywords": [
"skeleton",
"typescript"
],
"author": "Bosco Domingo",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexHHPS/typescript-ddd-hexagonal-ddd/issues"
},
"homepage": "https://github.com/AlexHHPS/typescript-ddd-hexagonal-ddd#readme",
"dependencies": {
"@fastify/autoload": "^5.10.0",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/sensible": "^5.6.0",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.0.1",
"@fastify/type-provider-typebox": "^4.0.0",
"@mgcrea/fastify-request-logger": "^1.7.1",
"@mgcrea/pino-pretty-compact": "^1.3.0",
"@sinclair/typebox": "^0.32.35",
"close-with-grace": "^1.3.0",
"fastify": "^4.28.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.12",
"glob": "^11.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}