-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.68 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.68 KB
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
{
"name": "@jump-example/monorepo",
"version": "3.4.0",
"description": "Jump Example Monorepo",
"main": "index.js",
"repository": "https://github.com/hello10/JumpExample",
"license": "None",
"private": true,
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.15.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-promise": "4.2.1",
"firebase-tools": "8.18.0",
"lerna": "3.22.1"
},
"scripts": {
"deploy": "lerna exec --concurrency 1 -- yarn deploy",
"deploy:functions": "lerna exec --scope @jump/functions -- yarn deploy",
"deploy:www": "lerna exec --scope @hello10/www -- yarn deploy",
"bootstrap": "yarn && lerna bootstrap",
"rebootstrap": "yarn clean && yarn bootstrap",
"link:hello10": "yarn link:groutcho-react && yarn link:react-hooks && yarn link:jump-client && yarn link:jump-server",
"link:groutcho-react": "lerna exec --scope @jump-example/www -- yarn link groutcho-react",
"link:react-hooks": "lerna exec --scope @jump-example/www -- yarn link @hello10/react-hooks",
"link:jump-client": "lerna exec --scope @jump-example/www -- yarn link @hello10/jump-client",
"link:jump-server": "lerna exec --scope @jump-example/functions -- yarn link @hello10/jump-server",
"lint": "lerna exec --parallel -- yarn lint",
"clean": "lerna exec --parallel -- yarn clean && rm -rf node_modules && rm -f yarn.lock",
"start": "lerna exec --parallel -- yarn start"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}