-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.56 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
47
48
49
50
51
52
53
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"build": "sh build-all.sh",
"build:atom": "yarn workspace @rixio/atom run build",
"build:cache": "yarn workspace @rixio/cache run build",
"build:form-store": "yarn workspace @rixio/form-store run build",
"build:lens": "yarn workspace @rixio/lens run build",
"build:list": "yarn workspace @rixio/list run build",
"build:list-react": "yarn workspace @rixio/list-react run build",
"build:react": "yarn workspace @rixio/react run build",
"build:wrapped": "yarn workspace @rixio/wrapped run build",
"clean": "yarn workspaces run clean",
"link": "lerna link",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"prettify": "run-s prettify:*",
"prettify:code": "prettier --write **/src/**/*",
"prettify:packages": "lerna exec -- sort-package-json && sort-package-json",
"release": "lerna publish from-package",
"test": "yarn workspaces run test",
"verify": "yarn workspaces run verify",
"version": "lerna version"
},
"lint-staged": {
"**/src/package.json": [
"yarn run prettify:packages"
],
"package.json": [
"yarn run prettify:packages"
]
},
"dependencies": {
"immutable": "4.0.0-rc.12",
"react": "16.13.1",
"react-native": "0.63.3",
"rxjs": "6.6.3"
},
"devDependencies": {
"@roborox/eslint-config-default": "2.2.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.11.0",
"husky": "4.3.0",
"lerna": "^3.20.2",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"sort-package-json": "^1.50.0"
}
}