-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "game-watch",
"private": true,
"workspaces": [
"lib/shared",
"lib/database",
"lib/service",
"lib/browser",
"lib/queue",
"client",
"server",
"searcher",
"resolver",
"notifier"
],
"scripts": {
"build": "pnpm turbo run build",
"build:lib": "pnpm turbo run build --filter=\"./lib/*\"",
"watch:lib": "pnpm turbo run watch --filter=\"./lib/*\"",
"build:docker": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose build",
"docker:dev": "docker compose -f docker-compose.yml -f docker-compose.development.yml",
"lint": "pnpm turbo run lint",
"lint:fix": "pnpm turbo run lint:fix",
"test": "pnpm turbo run test",
"clean": "rm -rf ./**/node_modules && rm -rf ./node_modules",
"mikro-orm": "pnpm --filter @game-watch/database mikro-orm"
},
"devDependencies": {
"@sentry/cli": "^2.35.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"pnpm": "9.9.0",
"turbo": "^1.13.4",
"typescript": "^5.5.4"
},
"resolutions": {
"multer": "1.4.4-lts.1"
}
}