-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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": "groutcho-monorepo",
"version": "3.1.3",
"license": "MIT",
"private": true,
"author": {
"name": "Stephen Handley",
"email": "stephen@hello10.com",
"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",
"mocha": "8.2.1",
"nyc": "15.1.0"
},
"scripts": {
"bootstrap": "yarn && lerna bootstrap",
"rebootstrap": "yarn clean && yarn bootstrap",
"build": "lerna exec --parallel -- yarn build",
"clean": "lerna exec --parallel -- yarn clean && rm -rf node_modules && rm -f yarn.lock",
"dev": "lerna exec --parallel -- yarn dev",
"link:setup": "lerna exec --parallel -- yarn link",
"lint": "lerna exec --parallel -- yarn lint",
"rebuild": "yarn rebootstrap && yarn build",
"test": "lerna exec --parallel -- yarn test"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}