-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.3 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.3 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
38
{
"name": "kurrent-node-client-repository",
"private": true,
"packageManager": "yarn@4.6.0",
"scripts": {
"build": "nx run-many --target=build",
"build:ts": "nx run-many --target=build:ts",
"build:watch": "nx run-many --target=build:watch --parallel",
"lint": "prettier --write \"packages/*/src/**/**/!(*.d).{ts,json}\" && eslint packages/*/src --ext .ts --no-error-on-unmatched-pattern",
"prettier:fix": "prettier --write \"packages/*/src/**/**/!(*.d).{ts,json}\"",
"clean": "nx run-many --target=clean",
"prepublishOnly": "yarn clean && yarn build && yarn test",
"test": "nx run test:test"
},
"author": "Kurrent, Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kurrent-io/KurrentDB-Client-NodeJS/issues"
},
"workspaces": [
"packages/*"
],
"homepage": "https://developers.kurrent.io/clients/grpc/getting-started?codeLanguage=NodeJS",
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "18.19.76",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-tsdoc": "^0.2.17",
"nx": "20.1.3",
"prettier": "^2.8.8",
"semver": "^7.7.2",
"typescript": "^5.6.3"
}
}