-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 873 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"scripts": {
"dev": "turbo dev --api='https://turbo.less.build' --token=$BUILDLESS_APIKEY --remote-only=true --no-daemon",
"build": "turbo build --api='https://turbo.less.build' --token=$BUILDLESS_APIKEY --remote-only=true --no-daemon",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"start:native": "cd apps/native && pnpm run start",
"android": "pnpm run native:android",
"ios": "pnpm run native:ios",
"native:android": "cd apps/native && pnpm run android",
"native:ios": "cd apps/native && pnpm run ios",
"native:web": "cd apps/native && pnpm run web",
"native:dev": "cd apps/native && pnpm run dev"
},
"devDependencies": {
"prettier": "3.0.3",
"turbo": "latest"
},
"packageManager": "pnpm@8.7.5"
}