forked from pablof7z/nutsack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 879 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
36
37
38
39
40
{
"private": true,
"name": "olas",
"scripts": {
"dev": "turbo dev",
"dev:mobile": "turbo dev --filter=\"{./apps/mobile}...\"",
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"build:mobile": "turbo build --filter=\"...{./apps/mobile}\""
},
"devDependencies": {
"turbo": "^1.10.7",
"typescript": "^4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5"
},
"workspaces": [
"apps/*",
"packages/eslint-config",
"packages/ndk/ndk",
"packages/ndk/ndk-wallet",
"packages/ndk/ndk-mobile",
"packages/ndk/packages/eslint-config-custom",
"packages/ndk/packages/tsconfig"
]
}