-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.41 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
{
"name": "@alkemio/ingest-alkemio-data",
"version": "0.13.0",
"description": "",
"author": "Alkemio Foundation",
"private": true,
"license": "EUPL-1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"prebuild": "npm run clean",
"clean": "rimraf ./dist",
"format": "prettier --write \"src/**/*.ts\" \"graphql/**/*.graphql\"",
"codegen": "graphql-codegen -v --config codegen.yml",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"lint:fix": "tsc --noEmit && eslint src/**/*.ts{,x} --fix",
"prepublishOnly": "npm run build",
"start:dev": "dotenvx run -f .env.development -- nodemon",
"start": "node ./dist/index.js"
},
"devDependencies": {
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "2.11.8",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-resolvers": "2.7.3",
"@types/amqplib": "^0.10.5",
"@types/node": "^14.14.10",
"@types/semver": "^7.3.4",
"@types/supertest": "^2.0.8",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"dotenv": "^16.0.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^3.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@alkemio/client-lib": "^0.31.0",
"@azure/openai": "^1.0.0-beta.12",
"@dotenvx/dotenvx": "^0.35.1",
"@graphql-codegen/typescript-graphql-request": "^4.5.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@langchain/community": "^0.2.4",
"@langchain/langgraph": "^0.2.8",
"@langchain/mistralai": "^0.1.1",
"@types/graphql-upload": "^8.0.11",
"amqplib": "^0.10.4",
"chromadb": "^1.10.1",
"file-type": "^19.0.0",
"graphql": "^16.6.0",
"graphql-upload": "^16.0.1",
"langchain": "^0.2.2",
"langsmith": "^0.1.66",
"mammoth": "^1.7.2",
"node-html-parser": "^7.0.1",
"officeparser": "^4.1.1",
"pdf-parse": "^1.1.1",
"winston": "^3.13.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.15.0",
"npm": ">=8.5.5"
},
"volta": {
"node": "21.7.3"
}
}