forked from gravity-ui/nodekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "@gravity-ui/nodekit",
"version": "1.2.1",
"description": "Simple toolkit for your Node.js apps and scripts",
"license": "MIT",
"author": "Gravity UI Team",
"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": {
"dotenv": "^16.0.3",
"jaeger-client": "^3.19.0",
"opentracing": "^0.14.7",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1"
},
"devDependencies": {
"@gravity-ui/eslint-config": "^2.0.0",
"@gravity-ui/prettier-config": "^1.0.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/jaeger-client": "^3.18.4",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/pino": "^7.0.5",
"axios": "^1.4.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"jest": "^29.5.0",
"prettier": "^2.8.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.5.0"
},
"peerDependencies": {
"axios": "^1.4.0"
}
}