-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.69 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
40
41
42
43
44
{
"author": "Ostap Chervak <[email protected]>",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Strikersoft/poa.git"
},
"scripts": {
"bootstrap": "npm run clean:all && npm run && lerna bootstrap",
"clean": "lerna run clean",
"clean:all": "lerna clean --yes && yarn clean",
"publish": "npm run build && lerna publish --silent --registry=https://registry.npmjs.org/",
"publish:canary":
"npm run build && lerna publish --npm-tag=canary --silent --registry=https://registry.npmjs.org/",
"start":
"npm run bootstrap && npm-run-all --parallel start:core start:router start:state start:satcheljs start:i18n",
"start:core": "cd packages/poa-core && npm run watch",
"start:router": "cd packages/poa-router && npm run watch",
"start:state": "cd packages/poa-state && npm run watch",
"start:satcheljs": "cd packages/poa-satcheljs && npm run watch",
"start:i18n": "cd packages/poa-i18n && npm run watch",
"build":
"npm run bootstrap && npm-run-all --parallel build:core build:router build:state build:satcheljs build:i18n",
"build:core": "cd packages/poa-core && npm run build",
"build:router": "cd packages/poa-router && npm run build",
"build:state": "cd packages/poa-state && npm run build",
"build:satcheljs": "cd packages/poa-satcheljs && npm run build",
"build:i18n": "cd packages/poa-i18n && npm run build"
},
"workspaces": ["packages/*"],
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"lerna": "^2.7.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2"
},
"publishConfig": {
"access": "public"
}
}