-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.75 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
46
47
48
49
50
{
"name": "@sprocketbot/workspaces",
"description": "Sprocket is a platform primarily used to manage and automate organized Esports leagues, one such example being Minor League Esports (https://mlesports.gg).",
"repository": {
"type": "git",
"url": "git+https://github.com/SprocketBot/sprocket.git"
},
"homepage": "https://github.com/SprocketBot/sprocket#readme",
"bugs": {
"url": "https://github.com/SprocketBot/sprocket/issues"
},
"license": "MIT",
"scripts": {
"postinstall": "npm run build:common",
"build": "pnpm run -r --if-present build ",
"build:common": "pnpm run --filter ./common build ",
"format": "pnpm run -r --if-present format ",
"format:check": "pnpm run -r --if-present format:check",
"lint": "pnpm run -r --if-present lint ",
"lint:check": "pnpm run -r --if-present lint:check",
"clean": "pnpm run -r --if-available clean ",
"check-deps:exec": "syncpack-fix-mismatches",
"check-deps": "syncpack-list-mismatches"
},
"workspaces": [
"common",
"core",
"clients/web",
"clients/discord-bot",
"clients/image-generation-frontend",
"microservices/image-generation-service",
"microservices/matchmaking-service",
"microservices/server-analytics-service",
"microservices/notification-service",
"microservices/submission-service"
],
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/passport-discord": "^0.1.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"syncpack": "^11.2.1"
}
}