-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 944 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
{
"name": "@postern/root",
"private": true,
"workspaces": [
"packages/client",
"packages/cli"
],
"devDependencies": {
"lerna": "^5.5.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.3"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna bootstrap & lerna run build",
"cli-start": "lerna exec --scope @postern/cli -- yarn start",
"cli-test": "lerna exec --scope @postern/cli -- yarn test",
"cli-publish": "lerna exec --scope @postern/cli -- yarn publish-cli",
"client-start": "lerna exec --scope @postern/client -- yarn test",
"lint": "yarn eslint . --quiet",
"lint-fix": "yarn eslint --fix .",
"list:stage": "yarn eslint . --rule \"no-console: [\"error\", { allow: [\"info\", \"warn\", \"error\"] }]\""
},
"dependencies": {
"assert": "^2.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0"
},
"pre-push": [],
"pre-commit": [
"list:stage"
]
}