-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 901 Bytes
/
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
{
"private": true,
"name": "@acme/monorepo",
"scripts": {
"dev": "turbo dev",
"dev:mobile": "turbo dev --filter=\"{./apps/mobile}...\"",
"ios:mobile": "turbo ios --filter=\"{./apps/mobile}...\"",
"android:mobile": "turbo android --filter=\"{./apps/mobile}...\"",
"dev:web": "turbo dev --filter=\"{./apps/web}...\"",
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"build:mobile": "turbo build --filter=\"...{./apps/mobile}\"",
"build:web": "turbo build --filter=\"...{./apps/web}\""
},
"devDependencies": {
"turbo": "^1.10.7",
"typescript": "^4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5"
}
}