-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.41 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "lexai-contract-platform",
"version": "1.0.0",
"description": "LexAI — AI-powered legal contract analysis platform with enrichment, security hardening, and codebase auditing tools",
"main": "server.js",
"type": "module",
"bin": {
"codebase-auditor": "src/cli.js"
},
"scripts": {
"start": "node server.js",
"start:worker": "node worker.js",
"dev": "nodemon server.js",
"dev:worker": "nodemon worker.js",
"seed": "node scripts/seed.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:run": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.js\"",
"prepare": "husky || true"
},
"keywords": [
"legal",
"contracts",
"ai",
"analysis",
"express",
"nodejs",
"code-analysis",
"auditor"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"@babel/types": "^7.23.0",
"@socket.io/redis-adapter": "^8.3.0",
"ajv": "^8.12.0",
"amqplib": "^0.10.3",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"fast-glob": "^3.3.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"ignore": "^5.3.0",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"mammoth": "^1.6.0",
"marked": "^11.0.0",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^8.0.3",
"paseto": "^3.1.4",
"pdf-parse": "^1.1.1",
"socket.io": "^4.6.2",
"uuid": "^9.0.0",
"winston": "^3.11.0",
"xss": "^1.0.14",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@fast-check/jest": "^1.8.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"supertest": "^6.3.4"
},
"engines": {
"node": ">=18.0.0"
}
}