-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.33 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
{
"name": "taylor_jd2",
"version": "0.0.1",
"type": "module",
"description": "An AI software developer built in node.js",
"exports": null,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsc -p configs/tsconfig.json && source .env && bash auth.sh && node ./build/index.js --no-node-snapshot",
"test": "jest --verbose true /build/tests/ --silent=false",
"build_docs": "node_modules/.bin/jsdoc -r src/App.ts -c configs/jsdoc.conf.json",
"build_tests": "tsc ./tests/*.test.ts --outDir ./build/tests/ --esModuleInterop true",
"lint_core": "eslint --ext .ts src/ --fix -c configs/.eslintrc.yml ",
"lint_tests": "eslint --ext .ts tests/ --fix c configs/.eslintrc.yml ",
"spellcheck": "cspell \"src/**/*.ts\" && cspell \"tests/**/*.ts\""
},
"scopes": {
"./build/": {
"dependencies": {
"fs": true
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gordon-BP/taylor-the-frontend-dev.git"
},
"keywords": [],
"author": "Gordy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gordon-BP/taylor-the-frontend-dev/issues"
},
"homepage": "https://github.com/Gordon-BP/taylor-the-frontend-dev#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@octokit/webhooks-types": "^7.1.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"babel-jest": "^29.6.2",
"cspell": "^6.31.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"esm": "^3.2.25",
"jest": "^29.6.2",
"jsdoc": "^4.0.2",
"prettier": "3.0.0",
"supertest": "^6.3.3",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/eslint": "^8.44.2",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"dree": "^4.5.5",
"express": "^4.18.2",
"langchain": "^0.0.121",
"openai": "^3.3.0",
"winston": "^3.10.0",
"zod": "^3.21.4"
},
"directories": {
"test": "tests"
}
}