-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "content-workflow-intelligence-platform",
"version": "1.0.0",
"description": "Recruiter-ready TypeScript service for content workflow intelligence, publishing readiness analysis, and editorial bottleneck visibility.",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"test": "node --test --import tsx tests/api.test.ts"
},
"keywords": [
"typescript",
"node",
"express",
"content-operations",
"editorial-workflow",
"seo-governance",
"platform",
"portfolio"
],
"author": "mizcausevic-dev",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"helmet": "^8.1.0",
"js-yaml": "^4.1.0",
"morgan": "^1.10.1",
"swagger-ui-express": "^5.0.1",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/js-yaml": "^4.0.9",
"@types/morgan": "^1.9.10",
"@types/node": "^24.0.1",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"supertest": "^7.1.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}