-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
71
72
73
{
"name": "@lomray/microservices-metrics",
"version": "1.0.0",
"description": "Microservices metrics for inverted json.",
"keywords": [
"node",
"js",
"microservice",
"inverted",
"json",
"metrics",
"ijson",
"typescript"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Lomray-Software/microservices-metrics.git"
},
"bugs": {
"url": "https://github.com/Lomray-Software/microservices-metrics/issues"
},
"homepage": "https://github.com/Lomray-Software/microservices-metrics",
"author": "Mikhail Yarmaliuk",
"license": "Apache-2.0",
"scripts": {
"lint:check": "eslint --ext '.ts,.tsx' 'src/**/*.{ts,tsx,*.ts,*tsx}'",
"lint:format": "eslint --fix --ext '.ts,.tsx' 'src/**/*.{ts,tsx,*.ts,*tsx}'",
"ts:check": "tsc --project ./tsconfig.json --skipLibCheck --noemit",
"build": "rollup -c",
"start:dev": "node --require ts-node/register src/index.ts",
"start:prod": "node ./lib/index.js",
"prepare": "husky install"
},
"dependencies": {
"@opentelemetry/api": "^1.4.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.35.0",
"@opentelemetry/resources": "^1.9.0",
"@opentelemetry/semantic-conventions": "^1.9.0",
"axios": "^1.2.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@lomray/eslint-config": "^2.0.2",
"@lomray/prettier-config": "^1.2.0",
"@rollup/plugin-json": "^6.0.0",
"@semantic-release/exec": "^6.0.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@zerollup/ts-transform-paths": "^1.7.18",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rollup": "^2.79.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-folder-input": "^1.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-ts": "^3.1.1",
"semantic-release": "^20.0.2",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "4.7.4"
}
}