-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 882 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
{
"name": "twitter-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node build/index.js",
"dev": "tsc-watch --onSuccess \"npm start\"",
"build": "tsc -p ."
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.7",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@apollo/server": "^4.11.0",
"@aws-sdk/client-s3": "^3.662.0",
"@aws-sdk/s3-request-presigner": "^3.662.0",
"@prisma/client": "^5.19.1",
"@tanstack/react-query": "^5.56.2",
"@types/node": "^22.5.5",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"graphql": "^16.9.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.19.1",
"ts-node": "^10.9.2"
}
}