-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 949 Bytes
/
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
{
"name": "linkme-api",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"build": "tsup src --format esm",
"start": "node --env-file ./.env dist/server.mjs",
"setup": "tsx ./src/setup.ts",
"dev": "tsx watch --env-file ./.env ./src/server.ts",
"d:dev": "npm install && docker compose up -d && npm run setup && tsx watch --env-file ./.env ./src/server.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.30",
"@types/uuid": "^9.0.8",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/jwt": "^8.0.0",
"bcryptjs": "^2.4.3",
"fastify": "^4.26.2",
"ioredis": "^5.3.2",
"postgres": "^3.4.3",
"redis": "^4.6.13",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}