-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 2.43 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
39
40
41
42
43
44
45
{
"name": "vexl-next",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*",
"tooling/*"
],
"scripts": {
"turbo:clean": "turbo clean && rm -rf ./node_modules/.cache",
"turbo:format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"turbo:test": "turbo test --concurrency=1 -- --cache --cache-location='node_modules/.cache/.jestcache'",
"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 format lint typecheck",
"utils:sync-translations": "yarn workspace @vexl-next/localizations utils:sync",
"utils:add-translation": "yarn workspace @vexl-next/localizations utils:add",
"notification-service:build-docker-image": "./scripts/build-app-docker-image.sh notification-service",
"location-service:build-docker-image": "./scripts/build-app-docker-image.sh location-service",
"btc-exchange-rate-service:build-docker-image": "./scripts/build-app-docker-image.sh btc-exchange-rate-service",
"user-service:build-docker-image": "./scripts/build-app-docker-image.sh user-service",
"chat-service:build-docker-image": "./scripts/build-app-docker-image.sh chat-service",
"dashboard-app:build-docker-image": "./scripts/build-app-docker-image.sh dashboard-app",
"offer-service:build-docker-image": "./scripts/build-app-docker-image.sh offer-service",
"metrics-service:build-docker-image": "./scripts/build-app-docker-image.sh metrics-service",
"postinstall": "manypkg check"
},
"private": true,
"dependencies": {
"@manypkg/cli": "^0.21.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"eslint": "^8.57.1",
"firebase-admin": "^12.3.1",
"prettier": "^3.3.2",
"tsx": "^4.16.0",
"turbo": "^1.11.3"
},
"resolutions": {
"crypto-browserify@^3.12.0": "patch:crypto-browserify@npm%3A3.12.0#./.yarn/patches/crypto-browserify-npm-3.12.0-bed454fef0.patch",
"[email protected]": "patch:react-native-quick-crypto@npm%3A0.7.6#./.yarn/patches/react-native-quick-crypto-npm-0.7.6-b57c066106.patch"
}
}