-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.46 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
54
55
56
57
58
59
60
61
{
"name": "invincible-api",
"version": "0.0.1",
"description": "API about Invincible TV Show and Comics.",
"type": "module",
"private": true,
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"seed": "tsx seed/seed.ts"
},
"keywords": [
"api",
"rest",
"restful",
"graphql",
"invincible"
],
"author": "Sebastián Lozano",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.1.0",
"mongoose": "^9.4.1",
"morgan": "^1.10.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^17.5.0",
"prettier": "^3.4.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
}
}