-
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) · 740 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 740 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": "api-inspector",
"version": "1.0.0",
"description": "A really cool API inspector tool that I use almost daily",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev server.ts",
"build": "tsc"
},
"keywords": [],
"author": "Nephthali Salam",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^12.4.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"http-proxy-middleware": "^3.0.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}