-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "@gravity-ui/nodekit",
"version": "2.2.0",
"description": "Simple toolkit for your Node.js apps and scripts",
"license": "MIT",
"author": "Gravity UI Team",
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/nodekit.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "tsc-watch -w --onSuccess 'jest'",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build && rm -rf dist/tests",
"test": "npm run build && npm run test:unit",
"test:unit": "jest --testPathPattern=dist/tests",
"typecheck": "tsc --noEmit",
"watch": "tsc -w"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.54.0",
"@opentelemetry/propagator-jaeger": "^1.27.0",
"@opentelemetry/sdk-node": "^0.54.0",
"@opentelemetry/semantic-conventions": "^1.27.0",
"dotenv": "^16.0.3",
"pino": "^8.21.0",
"pino-pretty": "^11.2.2"
},
"devDependencies": {
"@gravity-ui/eslint-config": "^3.2.0",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"axios": "^1.7.7",
"eslint": "^8.57.1",
"husky": "^8.0.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"axios": "^1.7.7"
}
}