forked from Novatip/novatip-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
{
"name": "novatip-backend",
"version": "0.1.0",
"description": "Novatip backend — creator profiles, tip indexer, analytics, and notifications",
"author": "Novatip",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc --project tsconfig.build.json",
"start": "node dist/app.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:studio": "prisma studio"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^8.0.1",
"@fastify/rate-limit": "^9.1.0",
"@novatip/sdk": "*",
"@prisma/client": "^5.15.0",
"@resend/node": "^3.2.0",
"fastify": "^4.28.0",
"ioredis": "^5.4.1",
"qrcode": "^1.5.3",
"tweetnacl": "^1.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"prisma": "^5.15.0",
"ts-jest": "^29.1.5",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18"
}
}