-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.75 KB
/
package.json
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
{
"name": "opencap",
"version": "1.0.0",
"description": "OpenCap Financial Management System",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest --config=jest.config.js --detectOpenHandles --runInBand --forceExit --testTimeout=30000",
"test:watch": "jest --config=jest.config.js --watch --runInBand",
"test:coverage": "jest --config=jest.config.js --coverage --detectOpenHandles --forceExit --testTimeout=30000",
"test:integration": "jest --config=jest.config.js --detectOpenHandles --runInBand --forceExit --testTimeout=30000 '__tests__/**/*.integration.test.js'",
"test:unit": "jest --config=jest.config.js --runInBand '__tests__/**/*.unit.test.js'",
"test:ci": "jest --config=jest.config.js --ci --coverage --detectOpenHandles --forceExit --testTimeout=30000",
"test:app": "jest --config=jest.config.js --detectOpenHandles --runInBand --forceExit __tests__/app.test.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@hapi/code": "^9.0.3",
"@hapi/hoek": "^11.0.4",
"@langchain/anthropic": "^0.3.8",
"@langchain/core": "^0.3.18",
"@langchain/langgraph": "^0.2.22",
"argon2": "^0.40.3",
"bcrypt": "^5.1.1",
"chai-http": "^5.0.0",
"code": "^5.2.4",
"data-forge": "^1.10.2",
"data-forge-fs": "^0.0.9",
"diff": "^7.0.0",
"dotenv": "^16.4.5",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"google-auth-library": "^9.14.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"minimatch": "^10.0.1",
"minio": "^8.0.2",
"mkdirp": "^3.0.1",
"mocha": "^10.7.3",
"mongoose": "^5.13.22",
"ms": "^2.1.3",
"node-mocks-http": "^1.16.1",
"pg": "^8.13.1",
"sinon": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^29.5.11",
"axios": "^1.7.7",
"axios-mock-adapter": "^2.1.0",
"babel-jest": "^29.7.0",
"chai": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"hest": "^1.0.5",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"mongodb-memory-server": "^9.5.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^6.3.4"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.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"
}