-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.18 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
{
"name": "robster-monitoring",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"discord-bot": "yarn workspace @robster-monitoring/discord-bot",
"robster-shared": "yarn workspace @robster-monitoring/shared",
"image-publisher": "yarn workspace @robster-monitoring/image-publisher",
"image-s3-storage": "yarn workspace @robster-monitoring/s3-image-storage",
"discord-to-s3-image-migrator": "yarn workspace @robster-monitoring/discord-to-s3-image-migrator",
"twitter-bot": "yarn workspace @robster-monitoring/twitter-bot",
"build-all": "yarn discord-bot build && yarn image-publisher build && yarn image-s3-storage build && yarn twitter-bot build"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"workspaces": [
"discord-bot",
"image-publisher",
"robster-shared",
"image-s3-storage",
"discord-to-s3-image-migrator",
"twitter-bot"
]
}