-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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
48
49
50
51
52
53
{
"name": "invincible",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/server.js",
"dev": "tsc-watch --onSuccess \"node dist/server.js\"",
"build": "tsc",
"seed": "tsc && node dist/seed/seed.js",
"prod": "node dist/server.js"
},
"keywords": [],
"author": "Sebastián Fernando Lozano Bello",
"license": "MIT",
"type": "module",
"description": "A powerful and open Invincible API. Access character data, Locations data, and more, whenever and wherever you want. 🔵⚫",
"dependencies": {
"@eslint/create-config": "1.4.0",
"chalk": "^5.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"figlet": "^1.8.0",
"jest": "^29.7.0",
"mongoose": "^8.13.1",
"morgan": "^1.10.0",
"redis": "^4.7.0",
"supertest": "^7.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/figlet": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.18.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.20.0"
}
}