-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "mediavault",
"version": "1.0.0",
"description": "Personal API for managing and recording completed movies, series, anime, books, and video games. Allows you to categorize, rate, and track your entertainment consumption yearly.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "tsx watch ./src/index.ts",
"test": "jest --verbose"
},
"keywords": [
"entertainment-tracker",
"media-organizer",
"personal-api",
"movies",
"books",
"anime",
"gaming"
],
"author": "Pablo Vergara",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/dotenv": "6.1.1",
"@types/express": "5.0.1",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.9",
"@types/mongoose": "5.11.96",
"@types/supertest": "6.0.3",
"jest": "29.7.0",
"supertest": "7.1.0",
"ts-jest": "29.3.1",
"tsx": "4.19.3",
"typescript": "5.8.2"
},
"dependencies": {
"@types/cors": "^2.8.18",
"bcrypt": "5.1.1",
"cors": "^2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"jsonwebtoken": "9.0.2",
"mongoose": "8.13.0"
}
}