-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "ripple-lib-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "yarn ts-node src/server.ts",
"dev:watch": "ts-node-dev --respawn src/server.ts",
"lint": "eslint . --ext .ts,.tsx --fix",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "HirokiYasui <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"@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-jest": "^26.6.0",
"grpc-tools": "^1.11.2",
"grpc_tools_node_protoc_ts": "^5.3.2",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsutils": "^3.21.0",
"typescript": "^4.7.4",
"yarn-upgrade-all": "^0.7.1"
},
"dependencies": {
"dotenv": "^16.0.1",
"google-protobuf": "^3.20.1",
"grpc": "^1.24.11",
"ripple-lib": "^1.10.1"
}
}