2018-12-07 17:44:11 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
2018-12-12 19:34:22 +03:00
|
|
|
"babel-eslint": "^10.0.0",
|
2018-12-21 22:18:05 +03:00
|
|
|
"eslint-plugin-react": "7.4.0",
|
2018-12-23 03:13:56 +03:00
|
|
|
"eslint-plugin-flowtype": "3.2.0",
|
2018-12-07 17:44:11 +03:00
|
|
|
"lerna": "3.4.2"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2018-12-11 03:28:55 +03:00
|
|
|
"lerna": "lerna",
|
2018-12-13 04:31:17 +03:00
|
|
|
"prepare": "lerna run prepare --since master --stream --sort -- --scripts-prepend-node-path",
|
2018-12-21 22:31:45 +03:00
|
|
|
"build:all": "lerna run build",
|
2018-12-11 03:28:55 +03:00
|
|
|
"publish": "lerna publish",
|
|
|
|
"canary": "lerna publish --canary preminor --npm-tag alpha",
|
|
|
|
"next": "lerna publish --bump prerelease --npm-tag next",
|
2018-12-11 01:16:45 +03:00
|
|
|
"lint": "lerna run lint --since master -- --color",
|
|
|
|
"lint:all": "lerna run lint -- --color",
|
|
|
|
"test": "lerna run test --since master -- --colors",
|
|
|
|
"test:all": "lerna run test -- --colors"
|
2018-12-07 17:44:11 +03:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
]
|
|
|
|
}
|