-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.47 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
{
"private": true,
"name": "food-captain",
"version": "1.0.0",
"description": "Food manager for home",
"repository": "[email protected]:tomas-light/food-captain.git",
"author": "Artem Ignatev <[email protected]>",
"license": "MIT",
"workspaces": [
"application/**"
],
"scripts": {
"start": "npm-run-all --parallel db:docker:run start:host start:api",
"start:host": "yarn workspace @food-captain/host run start",
"start:api": "yarn workspace @food-captain/api run start",
"-": "",
"start:without-scrabing": "npm-run-all --parallel db:docker:run startOnly:host startOnly:api",
"startOnly:host": "yarn workspace @food-captain/host run start-app",
"startOnly:api": "yarn workspace @food-captain/api run start-app",
"--": "",
"db&caddy": "npm-run-all --parallel db:docker:run caddy:run",
"db:docker:run": "yarn workspace @food-captain/database db:docker:run",
"caddy:run": "yarn workspace @food-captain/host caddy:run",
"---": "",
"test": "yarn workspaces run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"typescript": "4.9.5"
},
"packageManager": "[email protected]"
}