forked from instantdb/instant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "instant-local-monorepo",
"version": "0.0.0",
"private": true,
"description": "Instant's local Monorepo",
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"sandbox/*",
"packages/*",
"www"
]
},
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"dev": "turbo run dev --parallel",
"test": "turbo run test:ci",
"format": "prettier --write --config ./.prettierrc \"**/*.{ts,tsx,js,jsx,json,md}\"",
"publish-packages": "turbo run publish-package --filter=\"./packages/*\"",
"build-packages": "turbo run build --filter=\"./packages/*\" --cache-dir=.turbo",
"build-sandbox": "turbo run build --filter=\"./sandbox/*\" --cache-dir=.turbo"
},
"devDependencies": {
"prettier": "^3.3.3",
"turbo": "^1.13.2"
},
"dependencies": {
"expo-constants": "~14.4.2",
"expo-linking": "~5.0.2",
"expo-router": "^2.0.0",
"expo-status-bar": "~1.6.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0"
}
}