-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 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
{
"name": "movies4discord",
"private": true,
"homepage": "https://github.com/muqshots/movies4discord",
"repository": {
"type": "git",
"url": "https://github.com/muqshots/movies4discord"
},
"author": {
"name": "Muqshots",
"url": "https://github.com/muqshots"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "yarn workspaces foreach -piv run dev",
"build": "yarn workspaces foreach -ptiv run build",
"start": "yarn workspaces foreach -piv run start",
"lint": "yarn workspaces foreach -ptv run lint",
"db": "yarn workspace @movies4discord/db run",
"clean": "rimraf '.cache/*' && yarn workspaces foreach -ptv run clean && rimraf '**/node_modules'",
"fix:all-files": "yarn workspaces foreach -ptv run fix:all-files",
"typecheck": "yarn workspaces foreach -ptv run typecheck",
"nuke:node_modules": "rimraf '**/node_modules'",
"docker:start": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose up -d --build",
"docker:dev": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose up -f ./docker-compose-dev.yml -d --build"
},
"devDependencies": {
"prettier": "3.2.5",
"rimraf": "5.0.5"
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"packageManager": "[email protected]"
}