-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.39 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
{
"name": "commonwealth",
"description": "Common configurations, Linters, Style Guides, Assets, Plugins Optimized for multi-platform development environments",
"keywords": [],
"private": true,
"homepage": "https://github.com/flexn-io/commonwealth#readme",
"bugs": {
"url": "https://github.com/flexn-io/commonwealth/issues"
},
"author": "Flexn",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/flexn-io/commonwealth.git"
},
"scripts": {
"bootstrap": "npx lerna bootstrap -- --ignore-engines",
"bootstrap-clean": "rm -rf ./node_modules; npx lerna clean --yes && yarn bootstrap",
"deploy:prod": "lerna version --no-private && lerna publish from-package",
"deploy:preview": "lerna version --no-private && lerna publish from-package --dist-tag preview",
"deploy:canary": "lerna version --no-private && lerna publish from-package --dist-tag canary",
"deploy:feat": "lerna version --no-private && lerna publish from-package --dist-tag feat",
"deploy:lts": "lerna version --no-private && lerna publish from-package --dist-tag lts"
},
"devDependencies": {
"lerna": "^6.6.2",
"@flexn/prettier-config": "^0.1.6",
"prettier": "^2.3.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
}
}