-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "@hello10/jump-monorepo",
"version": "3.4.2",
"license": "MIT",
"private": true,
"author": {
"name": "Stephen Handley",
"email": "[email protected]",
"url": "https://hello10.com"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.14.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-promise": "4.2.1",
"lerna": "3.22.1",
"microbundle": "0.12.4"
},
"scripts": {
"bootstrap": "yarn && lerna bootstrap",
"build": "lerna exec --parallel -- yarn build",
"build:watch": "lerna exec --parallel -- yarn build:watch",
"clean": "lerna exec --parallel -- yarn clean && rm -rf node_modules && rm -f yarn.lock",
"lint": "lerna exec --parallel -- yarn lint",
"link:setup": "lerna exec --parallel -- yarn link && lerna exec --scope @hello10/jump-client -- yarn link @hello10/react-hooks",
"rebootstrap": "yarn clean && yarn bootstrap",
"rebuild": "yarn rebootstrap && yarn build",
"test": "lerna exec --parallel -- yarn test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"keywords": []
}