-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
38
39
40
41
42
43
44
45
46
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:icons": "lerna run build --scope '@commun/icons'",
"clean": "lerna clean",
"release": "lerna publish",
"ls": "lerna ls",
"dev": "yarn run build:icons && lerna run dev --parallel --stream",
"dev:fast": "lerna run dev --parallel --stream",
"dev:web": "lerna run dev --scope '@commun/web' --stream --no-prefix",
"dev:ui": "lerna run dev --scope '@commun/ui' --stream --no-prefix",
"start": "lerna run start --parallel --ignore '@commun/ui'",
"start:web": "lerna run start --scope '@commun/web'"
},
"author": "Good guys from Commun",
"workspaces": [
"packages/*"
],
"dependencies": {
"lerna": "3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-lerna-scopes": "^7.2.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"browserslist": [
"last 2 years",
"> 0.5%",
"not ie <= 11",
"not dead"
],
"engines": {
"yarn": "^1.13.0"
},
"resolutions": {
"@babel/core": "^7.4.0",
"styled-components": "^4.1.3",
"styled-is": "1.1.5",
"webpack": "^4.29.6"
}
}