-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "@treasure-dev/tdk-api",
"private": true,
"type": "module",
"scripts": {
"generate": "prisma generate",
"typecheck": "tsc --noEmit",
"test": "pnpm db:start:test && dotenv -e .env.test -- vitest run",
"dev": "pnpm db:start:dev && tsup --watch --onSuccess 'pnpm start'",
"build": "tsup",
"start": "node ./dist/index.js",
"db:migrate": "prisma migrate dev",
"db:migrate:test": "dotenv -e .env.test -- pnpm db:migrate",
"db:start:dev": "docker-compose up -d --wait && pnpm db:migrate",
"db:start:test": "docker-compose --env-file .env.test -f docker-compose.test.yml up -d --wait && dotenv -e .env.test -- pnpm db:migrate"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "catalog:",
"@fastify/cors": "catalog:",
"@fastify/swagger": "catalog:",
"@fastify/swagger-ui": "catalog:",
"@fastify/type-provider-typebox": "catalog:",
"@prisma/client": "catalog:",
"@sentry/node": "catalog:",
"@sinclair/typebox": "catalog:",
"@thirdweb-dev/engine": "catalog:",
"@treasure-dev/auth": "workspace:*",
"@treasure-dev/tdk-core": "workspace:*",
"@wagmi/core": "catalog:",
"abitype": "catalog:",
"dotenv": "catalog:",
"fastify": "catalog:",
"jwks-rsa": "catalog:",
"jsonwebtoken": "catalog:",
"pino": "catalog:",
"pino-pretty": "catalog:",
"thirdweb": "catalog:",
"uuid": "catalog:",
"viem": "catalog:"
},
"devDependencies": {
"@types/jsonwebtoken": "catalog:",
"dotenv-cli": "catalog:",
"prisma": "catalog:",
"tsup": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22"
}
}