forked from Azure-Samples/azure-search-openai-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "azure-search-openai-javascript",
"version": "1.0.0",
"description": "ChatGPT + Enterprise data with Azure OpenAI and AI Search",
"private": true,
"directories": {
"doc": "docs"
},
"scripts": {
"start": "concurrently \"npm:start:*\" --kill-others",
"start:webapp": "npm run dev --workspace=webapp",
"start:search": "npm run dev --workspace=search",
"start:indexer": "npm run dev --workspace=indexer",
"test": "npm run test -ws --if-present",
"test:playwright": "npx playwright test",
"test:load": "k6 run tests/load/index.js",
"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 .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "simple-git-hooks || echo 'simple-git-hooks install skipped'",
"install:playwright": "npx playwright install --with-deps"
},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@playwright/test": "^1.39.0",
"@tapjs/nock": "^3.1.13",
"@types/node": "^18.15.3",
"@types/k6": "^0.47.1",
"concurrently": "^8.2.1",
"eslint-config-shared": "^1.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"tap": "^18.5.2"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true
},
"eslintConfig": {
"extends": "eslint-config-shared"
}
}