forked from lottie-react-native/lottie-react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.11 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
{
"name": "monorepo-root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "16"
},
"scripts": {
"setup": "yarn workspace lottie-react-native build",
"fabric:android": "yarn workspace fabric-example android",
"fabric:ios": "yarn workspace fabric-example ios",
"paper:android": "yarn workspace paper-example android",
"paper:ios": "yarn workspace paper-example ios",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "yarn docs:prepare && gitbook build",
"docs:watch": "yarn docs:prepare && gitbook serve",
"docs:publish": "yarn docs:clean && yarn docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git fetch [email protected]:airbnb/lottie-react-native.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push [email protected]:airbnb/lottie-react-native.git gh-pages --force"
},
"devDependencies": {
"gitbook-cli": "^2.3.2"
},
"resolutions": {
"react": "18.1.0"
},
"workspaces": [
"./apps/*",
"./packages/*"
],
"packageManager": "[email protected]"
}