-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "opentelemetry-js-example-app",
"version": "0.2.0",
"private": false,
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.client.json && vite build",
"prepare": "husky install",
"eslint": "eslint --ext .ts,.tsx --cache --fix ./client"
},
"dependencies": {
"@opentelemetry/api": "^1.0.3",
"@opentelemetry/core": "^1.0.0",
"@opentelemetry/exporter-otlp-http": "^0.26.0",
"@opentelemetry/resources": "^1.0.0",
"@opentelemetry/sdk-trace-base": "^1.0.0",
"@opentelemetry/sdk-trace-web": "^1.0.0",
"@opentelemetry/semantic-conventions": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/node": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"rollup-plugin-visualizer": "^5.5.2",
"typescript": "^4.3.2",
"vite": "^2.5.4"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run eslint"
]
},
"engines": {
"node": ">=14.16.0",
"npm": ">=7.22.0"
}
}