-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.11 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
{
"name": "graphql-ai-mashup",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"deploy": "wrangler deploy",
"normalbuild": "webpack",
"dockerbuild": "webpack --entry ./src/main.ts --output-path ./dist",
"cfdeploy": "wrangler build; wrangler deploy",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development ts-node-dev --exit-child --respawn src/main.ts",
"start": "node -r ts-node/register --env-file=.env src/main.ts",
"dockerstart": "node --env-file=.env dist/index.js",
"eslint": "./node_modules/.bin/eslint \"src/**/*.{js,jsx,ts,tsx}\" --ignore-pattern \"src/lib/\" --ignore-pattern \"src/shared/\"",
"check-types": "tsc --noemit",
"eslint:commit": "git diff --cached --name-only | grep -E 'src.*\\.[jt]sx?$' | xargs ./node_modules/.bin/eslint --quiet",
"eslint:quiet": "./node_modules/.bin/eslint \"src/**/*.{js,jsx,ts,tsx}\" --ignore-pattern \"src/lib/\" --ignore-pattern \"src/shared/\" --quiet",
"prettier:single": "./node_modules/.bin/prettier --single-quote --no-semi --trailing-comma es5 --print-width 120 --tab-width 4 --arrow-parens avoid --write",
"prettier": "./node_modules/.bin/prettier --single-quote --no-semi --trailing-comma es5 --print-width 120 --tab-width 4 --arrow-parens avoid --write \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier:check": "npm run prettier -- --list-different",
"lint-staged": "lint-staged"
},
"precommit": "lint-staged",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run eslint:commit",
"prettier --single-quote --no-semi --trailing-comma es5 --print-width 120 --tab-width 4 --arrow-parens avoid --write \"!src/lib/**\" \"!src/shared/**\"",
"git add"
]
},
"keywords": [
"ai",
"graphql"
],
"engines": {
"node": ">=20.0.0"
},
"author": "Erik <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/VeryInt/GraphQL-AI-Mashup.git"
},
"bugs": {
"url": "https://github.com/VeryInt/GraphQL-AI-Mashup/issues"
},
"homepage": "https://github.com/VeryInt/GraphQL-AI-Mashup#readme",
"license": "ISC",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.0",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"cross-env": "7.0.3",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.4.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"wrangler": "^3.51.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.20.8",
"@azure/openai": "^1.0.0-beta.12",
"@google/generative-ai": "^0.3.1",
"@graphql-tools/schema": "^10.0.3",
"@graphql-yoga/plugin-defer-stream": "^3.3.0",
"dataloader": "^2.2.2",
"dotenv": "^16.4.5",
"graphql": "^16.8.1",
"graphql-yoga": "^5.3.0",
"groq-sdk": "^0.3.2",
"jose": "^5.2.3",
"lodash": "^4.17.21",
"openai": "^4.37.1",
"qs": "^6.12.0"
}
}