-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
39 lines (39 loc) · 1.29 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
{
"name": "eventstore-node-client-repository",
"private": true,
"scripts": {
"build": "lerna run --stream build",
"build:ts": "lerna run --stream build:ts",
"build:watch": "lerna run build:watch --parallel",
"lint": "run-s -c lint:*",
"lint:prettier": "prettier --check \"packages/*/src/**/**/!(*.d).{ts,json}\"",
"lint:eslint": "eslint \"packages/*/src/**/*.ts\"",
"prettier:fix": "prettier --write \"packages/*/src/**/**/!(*.d).{ts,json}\"",
"clean": "lerna run --stream clean",
"prepublishOnly": "run-s clean build test",
"test": "lerna run --stream test --",
"postinstall": "yarn build"
},
"author": "Event Store Limited",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/EventStore/EventStore-Client-NodeJS/issues"
},
"homepage": "https://developers.eventstore.com/clients/grpc/getting-started?codeLanguage=NodeJS",
"devDependencies": {
"@tsconfig/node14": "^14.1.2",
"@types/node": "^16.18.67",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-tsdoc": "^0.2.17",
"lerna": "^6.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/*"
]
}