-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
39 lines (39 loc) · 930 Bytes
/
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
{
"name": "nice-grpc-root",
"version": "0.0.0",
"description": "A gRPC library that is nice to you",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"nice-grpc-web/@types/jasmine"
]
},
"author": "Daniel Lytkin <aikoven@deeplay.io>",
"license": "MIT",
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"prepare": "lerna run prepare && husky"
},
"lint-staged": {
"*.{ts,js,md,json,yaml}": "prettier --write"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"conventional-changelog-conventionalcommits": "^6.1.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"mkdirp": "^3.0.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~5.7.2"
},
"packageManager": "yarn@1.22.22"
}