forked from instantdb/instant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 KB
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
{
"name": "instant-local-monorepo",
"version": "0.0.0",
"private": true,
"description": "Instant's local Monorepo",
"packageManager": "pnpm@8.15.6",
"workspaces": {
"packages": [
"sandbox/*",
"packages/*",
"www"
]
},
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"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"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"prettier": "^3.2.4",
"turbo": "^1.13.2"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.7",
"expo-constants": "~14.4.2",
"expo-linking": "~5.0.2",
"expo-router": "^2.0.0",
"expo-status-bar": "~1.6.0",
"flat": "^6.0.1",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"sort-objects-array": "^2.0.0"
}
}