-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 916 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 916 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
30
31
32
33
{
"name": "focus-article-server",
"module": "src/index.ts",
"type": "module",
"scripts": {
"test": "bun test --test-globals",
"lint": "bun x prettier --write .",
"watch": "bun run --watch src/index.ts",
"pm2": "pm2 start src/index.ts --interpreter=bun --name focus-article-server && pm2 startup && pm2 save"
},
"private": true,
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.3",
"@types/supertest": "^6.0.3",
"supertest": "^7.1.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.1.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"@types/cors": "^2.8.19",
"@types/swagger-ui-express": "^4.1.8",
"article-metadata-extractor": "^1.3.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"qs": "^6.14.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.0.17"
}
}