This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "benchmarks",
"version": "0.0.1",
"description": "A repo containing an example project to test Aspecto's benchmarks",
"main": "index.ts",
"scripts": {
"start": "NODE_ENV=production ts-node -T src/index.ts",
"plain": "NODE_ENV=development ts-node-dev src/index.ts",
"aspecto": "NODE_ENV=development ASPECTO=true ts-node-dev src/index.ts",
"prettier": "prettier --config .prettierrc.yml --write \"**/*.{ts,tsx,js,jsx,json}\"",
"benchmark": "ts-node scripts/measure.ts",
"report:local": "ts-node scripts/generate-full-report-local-mode.ts report",
"report:aws": "ts-node scripts/generate-full-report-aws-mode.ts report",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspecto-io/benchmarks.git"
},
"keywords": [
"aspecto",
"opentelemetry",
"benchmarks"
],
"author": "Aspecto",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aspecto-io/benchmarks/issues"
},
"homepage": "https://github.com/aspecto-io/benchmarks#readme",
"dependencies": {
"@aspecto/logger": "^0.0.15",
"@aspecto/opentelemetry": "^0.0.136",
"ab-result": "^1.0.2",
"axios": "^0.21.2",
"colors": "^1.4.0",
"env-var": "^6.3.0",
"express": "^4.17.3",
"pidusage": "^2.0.21",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@types/express": "4.17.8",
"@types/node": "14.11.2",
"@types/pidusage": "2.0.1",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"ts-node-dev": "1.0.0-pre.64",
"typescript": "4.0.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}