forked from gravity-ui/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.75 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@gravity-ui/gateway",
"version": "4.0.0",
"description": "",
"license": "MIT",
"main": "build/index.js",
"files": [
"build",
"proto",
"bin",
"patches"
],
"types": "build/index.d.ts",
"bin": {
"gateway-reflection-patch": "bin/patch.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/gateway.git"
},
"bugs": {
"url": "https://github.com/gravity-ui/gateway/issues"
},
"homepage": "https://github.com/gravity-ui/gateway#readme",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"build-integration": "sh integration-test/build.sh",
"start-integration-server": "node build-integration/integration-test/server",
"build-and-run-integration": "npm run build-integration && npm run start-integration-server",
"clean": "rm -rf build && rm -rf build-integration",
"lint": "npm run lint:code && npm run lint:exports",
"lint:code": "eslint \"lib/**/*.{js,ts}\" --quiet",
"lint:exports": "npm run build && attw --pack .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "jest --colors",
"test-integration": "npx patch-package && start-server-and-test build-and-run-integration http://127.0.0.1:3000 test-integration-no-server",
"test-integration-no-server": "jest --colors --config=jest.config-integration.js"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.9",
"@grpc/proto-loader": "^0.7.8",
"ajv": "^8.12.0",
"axios": "^1.3.5",
"axios-retry": "^3.4.0",
"lodash": "^4.17.21",
"object-sizeof": "^2.6.5",
"protobufjs": "^7.2.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@gravity-ui/eslint-config": "^2.0.0",
"@gravity-ui/prettier-config": "^1.0.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"grpc-reflection-js": "^0.3.0",
"grpc-server-reflection": "^0.1.5",
"grpc-tools": "^1.12.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nano-staged": "^0.8.0",
"prettier": "^2.8.6",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.1",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"grpc-reflection-js": "^0.3.0"
},
"peerDependenciesMeta": {
"grpc-reflection-js": {
"optional": true
}
},
"nano-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.md": [
"prettier --write"
]
}
}