-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.99 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.99 KB
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": "@tests/hash-backend-load",
"version": "0.0.0-private",
"private": true,
"description": "Performance testing for the HASH backend",
"license": "AGPL-3.0",
"files": [
"dist"
],
"type": "module",
"main": "./dist/esm/main.mjs",
"types": "./dist/esm/main.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/esm/main.d.ts"
]
}
},
"exports": {
".": "./dist/esm/main.mjs"
},
"scripts": {
"bench:load-testing": "for file in scenarios/*.yml; do artillery run --config artillery.yml $file --output reports/$(basename ${file%.*}).json --quiet --environment local; done",
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"codegen": "mkdir -p reports && echo '*' > reports/.gitignore",
"fix:eslint": "eslint --fix .",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:tsc": "tsc --noEmit",
"test:integration": "./scripts/test.sh"
},
"dependencies": {
"@blockprotocol/type-system": "workspace:*",
"@local/hash-backend-utils": "workspace:*",
"@local/hash-graph-client": "workspace:*",
"@local/hash-graph-sdk": "workspace:*",
"@local/hash-isomorphic-utils": "workspace:*",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/exporter-trace-otlp-grpc": "0.207.0",
"@opentelemetry/resources": "2.2.0",
"@opentelemetry/sdk-node": "0.207.0",
"@opentelemetry/sdk-trace-node": "2.2.0",
"@opentelemetry/semantic-conventions": "1.37.0",
"@ory/client": "1.22.7",
"artillery": "2.0.30",
"dotenv-flow": "3.3.0",
"uuid": "13.0.0"
},
"devDependencies": {
"@apps/hash-api": "workspace:*",
"@local/eslint": "workspace:*",
"@local/tsconfig": "workspace:*",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/dotenv-flow": "3.3.3",
"eslint": "9.39.3",
"rimraf": "6.1.3",
"rollup": "4.60.0",
"typescript": "5.9.3"
}
}