forked from vexl-it/vexl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 2.02 KB
/
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
{
"name": "vexl-next",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*",
"tooling/*"
],
"scripts": {
"turbo:build": "turbo build",
"turbo:clean": "turbo clean && rm -rf ./node_modules/.cache",
"turbo:format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"turbo:format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache'",
"turbo:lint": "turbo lint --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"turbo:lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"turbo:typecheck": "turbo typecheck",
"turbo:check-code": "yarn turbo build format lint typecheck",
"utils:sync-translations": "yarn workspace @vexl-next/localizations utils:sync && yarn workspace @vexl-next/localizations build",
"utils:add-translation": "yarn workspace @vexl-next/localizations utils:add && yarn workspace @vexl-next/localizations build",
"location-service:build-docker-image": "./scripts/build-image-location-service.sh",
"postinstall": "manypkg check"
},
"private": true,
"dependencies": {
"@manypkg/cli": "^0.21.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"turbo": "latest"
},
"resolutions": {
"react-native-quick-crypto@^0.5.0": "patch:react-native-quick-crypto@npm%3A0.5.0#./.yarn/patches/react-native-quick-crypto-npm-0.5.0-6b2835ed1e.patch",
"react-native-quick-base64@^2.0.5": "patch:react-native-quick-base64@npm%3A2.0.5#./.yarn/patches/react-native-quick-base64-npm-2.0.5-8355f57fab.patch",
"[email protected]": "patch:expo-image-picker@npm%3A14.1.1#./.yarn/patches/expo-image-picker-npm-14.1.1-c6baa99e3c.patch",
"react-native-quick-crypto@^0.6.1": "patch:react-native-quick-crypto@npm%3A0.6.1#./.yarn/patches/react-native-quick-crypto-npm-0.6.1-02196a3db2.patch"
}
}