-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "grpcjs-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "DEV_ENV=true NODE_ENV=dev nodemon ./src/index.js",
"start": "NODE_ENV=production node ./lib/index.js",
"type-check": "tsc --noEmit",
"build": "NODE_ENV=production babel src --out-dir lib --copy-files --extensions '.ts,.js'",
"build-proto": "sh ./script/build_proto.sh",
"test": "NODE_ENV=test tsc & jest",
"test:watch": "NODE_ENV= test jest --watch",
"test:coverage": "NODE_ENV= test jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/register": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"grpc_tools_node_protoc_ts": "^5.0.1",
"grpc-tools": "^1.9.1",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"dependencies": {
"@grpc/grpc-js": "^1.1.8",
"@grpc/proto-loader": "^0.6.0-pre9"
}
}