-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "opencap",
"version": "1.0.0",
"description": "OpenCap Financial Management System",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"frontend:preview": "cd frontend && npm run preview",
"dev:full": "concurrently \"npm run dev\" \"npm run frontend:dev\"",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles --forceExit",
"test:watch": "cross-env NODE_ENV=test jest --watch --detectOpenHandles --forceExit",
"test:coverage": "cross-env NODE_ENV=test jest --coverage --detectOpenHandles --forceExit",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed",
"test:e2e:debug": "npx playwright test --debug",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:report": "npx playwright show-report",
"test:all": "npm run test && npm run test:e2e",
"lint": "eslint .",
"lint:frontend": "cd frontend && npm run lint",
"format": "prettier --write .",
"init:zerodb": "node scripts/initZeroDB.js",
"test:zerodb": "node scripts/testZeroDB.js"
},
"dependencies": {
"@langchain/anthropic": "^1.5.1",
"@langchain/core": "^1.2.2",
"@langchain/langgraph": "^1.4.7",
"@types/ws": "^8.18.1",
"argon2": "^0.40.3",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csv-parse": "^5.6.0",
"csv-parser": "^3.2.0",
"csv-stringify": "^6.6.0",
"data-forge": "^1.10.2",
"data-forge-fs": "^0.0.9",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.0",
"google-auth-library": "^9.14.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mammoth": "^1.9.1",
"minimatch": "^10.0.1",
"minio": "^8.0.2",
"mkdirp": "^3.0.1",
"mongodb": "4.17.0",
"mongoose": "^6.13.10",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"neo4j-driver": "^5.28.1",
"nodemailer": "^9.0.3",
"openai": "^5.10.1",
"pdf.js-extract": "^0.2.1",
"pg": "^8.13.1",
"sharp": "^0.34.3",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tesseract.js": "^6.0.1",
"uuid": "^11.1.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@playwright/test": "^1.53.2",
"concurrently": "^9.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"http-status-codes": "^2.3.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^7.1.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/opencap.git"
},
"keywords": [
"financial",
"reporting",
"management",
"api"
],
"author": "Your Name",
"license": "ISC",
"bugs": {
"url": "https://github.com/yourusername/opencap/issues"
},
"homepage": "https://github.com/yourusername/opencap#readme"
}