-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 KB
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
{
"name": "typescript-sdk",
"version": "1.0.0",
"main": "dist/src/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp ./proto/services.proto ./dist/proto/",
"prepare": "npm run build",
"commit": "cz",
"test": "jest"
},
"repository": "git@github.com:keploy/typescript-sdk.git",
"author": "Rajat Sharma <lunasunkaiser@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/merge-descriptors": "^1.0.1",
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.2",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.6.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@grpc/grpc-js": "^1.7.1",
"@grpc/proto-loader": "^0.7.3",
"cors": "^2.8.5",
"express": "^4.17.3",
"got": "^11.5.2",
"http-status-codes": "^2.2.0",
"import-in-the-middle": "^1.3.4",
"merge-descriptors": "^1.0.1",
"node-fetch": "^2.6.7",
"require-in-the-middle": "^5.1.0"
}
}