-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 723 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 723 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
{
"name": "movieflix-api",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "npx tsx watch src/server.ts",
"start": "node dist/src/server.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^4.17.22",
"@types/node": "^22.15.21",
"prettier": "3.5.3",
"prisma": "^6.8.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@prisma/client": "^6.8.2",
"@types/swagger-ui-express": "^4.1.8",
"express": "^4.21.2",
"swagger-ui-express": "^5.0.1"
}
}