-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 864 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 864 Bytes
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
{
"name": "@app-name/monorepo",
"private": true,
"version": "0.0.1",
"workspaces": {
"packages": [
"packages/*",
"services/*"
],
"installConfig": {
"hoistingLimits": "dependencies"
}
},
"scripts": {
"install": "yarn lerna exec yarn install",
"web:start:dev": "yarn lerna run dev --scope=@app-name/web",
"bootstrap": "yarn lerna bootstrap",
"clean": "rm -rf ./packages/*/node_modules && rm -rf ./services/*/node_modules",
"graph": "yarn nx graph"
},
"devDependencies": {
"lerna": "^5.1.6",
"nx": "^14.3.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-media-query": "1.0.11",
"react-native-web": "0.17.7",
"expo-yarn-workspaces": "^2.0.0"
},
"packageManager": "yarn@1.22.1"
}