forked from StellarDevHub/Web3-Student-Lab
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.14 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "prisma generate && tsc",
"start": "node dist/src/index.js",
"start:prod": "node dist/src/index.js",
"dev": "tsx watch src/index.ts",
"test": "jest --runInBand --forceExit",
"test:coverage": "jest --coverage --runInBand --forceExit",
"collaboration": "tsx src/collaborationServer.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^5.5.1",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@prisma/config": "^7.8.0",
"@sentry/node": "^8.0.0",
"@stellar/stellar-sdk": "^14.6.1",
"@types/ioredis": "^4.28.10",
"@types/json2csv": "^5.0.7",
"bcryptjs": "^3.0.2",
"bullmq": "^5.76.1",
"cors": "^2.8.6",
"dataloader": "^2.2.3",
"dotenv": "^17.3.1",
"ethers": "^5.8.0",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"graphql": "^16.14.0",
"graphql-depth-limit": "^1.1.0",
"ioredis": "^5.10.1",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"marked": "^9.1.6",
"openai": "^6.32.0",
"pg": "^8.20.0",
"prisma": "^7.8.0",
"qrcode": "^1.5.4",
"sanitize-html": "^2.17.5",
"socket.io": "^4.8.3",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"winston": "^3.19.0",
"ws": "^8.20.0",
"y-websocket": "^3.0.0",
"yjs": "^13.6.30",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.5.0",
"@types/qrcode": "^1.5.5",
"@types/sanitize-html": "^2.16.1",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/ws": "^8.18.1",
"ioredis-mock": "^8.13.1",
"jest": "^30.4.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"type": "module",
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}