forked from Azure-Samples/azure-openai-rag-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.78 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
{
"name": "azure-openai-rag-workshop",
"version": "1.0.0",
"description": "Create your own ChatGPT with Retrieval-Augmented-Generation",
"private": true,
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "concurrently \"npm:start:*\" --kill-others",
"start:frontend": "npm run dev --workspace=frontend",
"start:backend": "npm run dev --workspace=backend",
"build": "npm run build -ws --if-present",
"clean": "npm run clean -ws --if-present",
"docker:build": "npm run docker:build -ws --if-present",
"format": "prettier --list-different --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/Azure-Samples/azure-openai-rag-workshop.git"
},
"homepage": "https://github.com/Azure-Samples/azure-openai-rag-workshop",
"bugs": {
"url": "https://github.com/Azure-Samples/azure-openai-rag-workshop/issues"
},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"workspaces": [
"src/ingestion",
"src/backend",
"src/frontend"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-unicorn": "^50.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "*"
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"overrides": [
{
"files": [
"*.json"
],
"options": {
"parser": "json"
}
}
]
}
}