-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
{
"name": "gradle-ts-protoc-gen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:typescript",
"build:typescript": "tsc -p .",
"build:proto": "./gradlew generateProto",
"watch": "npm run build:typescript -- -w",
"prewatch": "npm run build:proto",
"prebuild": "npm run build:proto",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --check \"**/*.{ts,js,json,svg,md,yml}\"",
"lint:eslint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint:fix:prettier && npm run lint:eslint -- --fix",
"lint:fix:prettier": "prettier --write '**/*.{ts,tsx,js,json,svg,md,yml}'",
"start:server": "node server",
"start:client": "node client"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.6.8",
"google-protobuf": "^3.21.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/google-protobuf": "^3.15.6",
"@types/node": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"grpc-tools": "^1.11.2",
"prettier": "^2.7.1",
"ts-protoc-gen": "^0.15.0",
"typescript": "^4.7.4"
},
"eslintConfig": {
"ignorePatterns": [
"**/*.js",
"proto/*.ts"
],
"env": {
"browser": false,
"es6": true,
"node": true
},
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80,
"useTabs": false
}
}