-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 897 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 897 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
32
33
34
35
36
{
"name": "threads-app-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc-watch --onSuccess \"npm start\"",
"start": "node dist/index.js"
},
"type": "module",
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@apollo/server": "^5.3.0",
"@as-integrations/express5": "^1.1.2",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@types/express": "^5.0.6",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"graphql": "^16.12.0",
"jsonwebtoken": "^9.0.3",
"pg": "^8.18.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.2.1",
"@types/pg": "^8.16.0",
"prisma": "^7.3.0",
"ts-node": "^10.9.2",
"tsc-watch": "^7.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}