-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.42 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.42 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
{
"name": "hallow-grpc",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "A Seamless gRPC web client library without code generation by plugin system",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"format": "prettier --write \"packages/*/src/**/*.ts\" \"packages/*/test/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"packages/*/src/**/*.ts\" \"packages/*/test/**/*.ts\" \"*.{js,json,md}\"",
"typecheck": "yarn workspaces run typecheck",
"clean": "yarn workspaces run clean",
"test:server:start": "cd packages/test-server && ./scripts/start-test-server.sh",
"test:server:stop": "cd packages/test-server && docker-compose down",
"test:server:logs": "cd packages/test-server && docker-compose logs -f",
"test:integration": "yarn test:server:start && yarn workspace @hallow/generator test:integration"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.5.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}