-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 966 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 966 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
33
34
35
36
37
38
39
40
{
"name": "routly",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.6.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.75.0",
"expo-file-system": "~19.0.17",
"expo-sharing": "~14.0.7"
}
}