-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
42
43
44
45
46
{
"name": "github-ddb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "dotenvx run --env-file=.env -- tsx --watch src/index.ts",
"test": "dotenvx run --env-file=.test.env -- jest",
"test:watch": "dotenvx run --env-file=.test.env -- jest --watch",
"test:coverage": "dotenvx run --env-file=.test.env -- jest --coverage",
"format": "biome format --write",
"lint": "biome lint --write",
"types": "tsc --noEmit",
"docker": "docker-compose up -d"
},
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.20.0",
"dependencies": {
"@aws-sdk/client-dynamodb": "3.658.1",
"@aws-sdk/lib-dynamodb": "3.658.1",
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"@fastify/type-provider-typebox": "^6.1.0",
"@sinclair/typebox": "^0.34.41",
"base62": "^2.0.2",
"dynamodb-toolbox": "2.7.1",
"fastify": "^5.5.0",
"fastify-plugin": "^5.1.0",
"luxon": "^3.7.2",
"typescript": "^5.9.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@dotenvx/dotenvx": "^1.51.0",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.7.1",
"@types/node": "^22.7.5",
"jest": "^30.0.5",
"pino-pretty": "^13.1.2",
"ts-jest": "^29.2.5",
"tsx": "^4.20.4"
}
}