-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 839 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 839 Bytes
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
{
"name": "threads-app-backend",
"version": "1.0.0",
"description": "This is a backend of threads app made with graphql, prisma and postgresql",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc-watch --onSuccess \"npm start\"",
"start": "node build/index.js"
},
"author": "shivam shukla",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"prisma": "^6.2.1",
"tsc-watch": "^6.2.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@apollo/server": "^4.11.3",
"@prisma/client": "^6.2.1",
"@types/jsonwebtoken": "^9.0.7",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"graphql": "^16.10.0",
"jsonwebtoken": "^9.0.2"
}
}