generated from viqueen/typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "@labset/protoc-gen-graphql",
"version": "1.0.0",
"description": "A protoc plugin to generate GraphQL schema from protobuf files",
"preferGlobal": false,
"repository": "[email protected]:viqueen/protoc-gen-graphql.git",
"author": "Hasnae R. <>",
"license": "Apache-2.0",
"files": [
"dist"
],
"bin": {
"protoc-gen-graphql": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"lint": "eslint . --ext .ts,.tsx,.js"
},
"devDependencies": {
"@labset-eslint/eslint-plugin": "^1.2.0",
"@types/concat-stream": "^2.0.3",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^12.1.0",
"concat-stream": "^2.0.0",
"google-protobuf": "^3.21.4",
"graphql": "^16.9.0",
"protobufjs": "^7.3.2"
}
}