-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "paytask-backend-worker",
"version": "1.0.0",
"description": "PayTask Worker API - Task Discovery & Acceptance",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:seed": "ts-node prisma/seed.ts",
"prisma:reset": "prisma migrate reset",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"paytask",
"api",
"typescript",
"fastify",
"prisma",
"swagger"
],
"author": "PayTask Team",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/helmet": "^11.1.1",
"@fastify/multipart": "^8.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^2.1.0",
"@prisma/client": "^6.18.0",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"argon2": "^0.44.0",
"aws-sdk": "^2.1524.0",
"axios": "^1.13.1",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"bull": "^4.12.0",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"ioredis": "^5.8.1",
"sharp": "^0.33.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@prisma/engines": "^6.18.0",
"@types/bcrypt": "^6.0.0",
"@types/bs58": "^4.0.4",
"@types/bull": "^4.10.0",
"@types/node": "^20.19.22",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"pino-pretty": "^10.3.1",
"prettier": "^3.1.1",
"prisma": "^6.18.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}