-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.82 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.82 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
44
{
"name": "bitriel",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"mobile:start": "yarn workspace @bitriel/mobile start",
"mobile:ios": "yarn workspace @bitriel/mobile ios",
"mobile:android": "yarn workspace @bitriel/mobile android",
"mobile:web": "yarn workspace @bitriel/mobile web",
"mobile:build:ios": "yarn workspace @bitriel/mobile build-ios",
"mobile:build:android": "yarn workspace @bitriel/mobile build-android",
"mobile:build:all": "yarn workspace @bitriel/mobile build-all",
"mobile:deploy:ios": "yarn workspace @bitriel/mobile deploy-ios",
"mobile:deploy:android": "yarn workspace @bitriel/mobile deploy-android",
"mobile:prebuild": "yarn workspace @bitriel/mobile prebuild",
"mobile:prebuild:ios": "yarn workspace @bitriel/mobile prebuild:ios",
"mobile:prebuild:android": "yarn workspace @bitriel/mobile prebuild:android",
"mobile:clean": "yarn workspace @bitriel/mobile clean",
"api:dev": "yarn workspace @bitriel/api dev",
"api:build": "yarn workspace @bitriel/api build",
"api:start": "yarn workspace @bitriel/api start",
"api:lint": "yarn workspace @bitriel/api lint",
"api:test": "yarn workspace @bitriel/api test"
},
"devDependencies": {
"prettier": "^3.1.1",
"turbo": "2.5.4",
"typescript": "^5.3.3"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18"
},
"dependencies": {
"@babel/plugin-transform-class-static-block": "^7.27.1"
}
}