-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
{
"name": "budget-agent",
"type": "module",
"author": "Dan Frederick",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "webpack",
"build:central-controller": "cross-env AGENT_DIR=central-controller webpack",
"build:execution-node": "cross-env AGENT_DIR=execution-node webpack",
"package:execution-node:for-pi": "yarn build:execution-node && pkg dist/execution-node/bundle.js --targets node16-linux-armv7 --output execution-node",
"start:central-controller": "node dist/central-controller/bundle.js",
"start:execution-node": "node dist/execution-node/bundle.js",
"lint": "eslint .",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageReporters": [
"text",
"lcov"
],
"clearMocks": true,
"automock": false,
"moduleNameMapper": {
"^~/(.*)": "<rootDir>/src/$1"
}
},
"dependencies": {
"@eslint/js": "^9.15.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"google-auth-library": "^9.14.2",
"google-spreadsheet": "^4.1.4",
"node-cron": "^3.0.3",
"openai": "^4.73.0",
"zod": "^3.23.8"
},
"volta": {
"node": "20.18.0",
"yarn": "1.22.22"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-functional": "^7.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}