-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.16 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
{
"name": "specr",
"version": "0.1.0",
"description": "Headless REST API for round-trip automation of CSI MasterFormat®-compatible specification documents (UFGS, generic DOCX). Independent project; not affiliated with CSI.",
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/ && tsc --noEmit && prettier --check src/",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:watch": "vitest --project unit",
"test:coverage": "vitest run --coverage",
"migrate": "node-pg-migrate --tsx --migrations-dir src/db/migrations up",
"migrate:down": "node-pg-migrate --tsx --migrations-dir src/db/migrations down 1",
"seed": "tsx src/db/seed.ts",
"load:files": "tsx scripts/load-files.ts",
"seed:corpus": "pnpm load:files 'docs/references/UFGS/**/*.SEC' 'docs/references/UFGS/**/*.sec'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chardet": "^2.1.1",
"docx": "^9.6.1",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"fast-xml-parser": "^5.0.0",
"iconv-lite": "^0.7.2",
"jszip": "^3.10.0",
"multer": "^2.1.1",
"pg": "^8.20.0",
"pino": "^10.3.1",
"piscina": "^5.1.4",
"uuid": "^11.0.0",
"yauzl": "^3.3.0",
"zod": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@eslint/js": "latest",
"@types/express": "^5.0.6",
"@types/multer": "^1.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"@types/uuid": "^10.0.0",
"@types/yauzl": "^2.10.3",
"@vitest/coverage-v8": "^4.1.5",
"depcheck": "^1.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sonarjs": "^4.0.3",
"node-pg-migrate": "^8.0.4",
"pino-pretty": "^13.1.3",
"prettier": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.5"
}
}