-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
30 lines (30 loc) · 1.69 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
{
"private": true,
"resolutions": {
"**/react-native-safe-area-view": "1.1.1",
"**/graphql": "14.6.0"
},
"scripts": {
"build-common": "yarn workspace @mskg/tabler-world-common run build && yarn workspace @mskg/tabler-world-aws run build && yarn workspace @mskg/tabler-world-config run build && yarn workspace @mskg/tabler-world-rds-client run build && yarn workspace @mskg/tabler-world-geo run build && yarn workspace @mskg/tabler-world-jobs run build && yarn workspace @mskg/tabler-world-auth-client run build && yarn workspace @mskg/tabler-world-push-client run build",
"build-cache": "yarn workspace @mskg/tabler-world-cache run build && yarn workspace @mskg/tabler-world-lambda-subscriptions run build",
"dev-backend": "concurrently --kill-others -n SSH,SQL,DYO,API 'yarn workspace @mskg/tabler-world-data-service ssh' 'yarn workspace @mskg/tabler-world-data-service dev' 'yarn workspace @mskg/tabler-world-import dynamodb' 'yarn workspace @mskg/tabler-world-api dev'",
"dev-frontend": "yarn workspace @mskg/tabler-app run dev",
"--dev-frontend": "yarn workspace @mskg/tabler-app run config && yarn workspace @mskg/tabler-app run dev",
"dev-redis:start": "docker run --name tw-redis --rm -d -p 6379:6379 redis",
"dev-redis:stop": "docker container stop tw-redis",
"dev-redis:cli": "docker run -it --network host --rm redis redis-cli -h localhost"
},
"workspaces": {
"packages": [
"packages/*",
"services/*",
"apps/*"
]
},
"devDependencies": {
"concurrently": "^5.1.0"
},
"dependencies": {
"@mskg/tabler-world-tslint-rules": "0.0.1"
}
}