-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 KB
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": "monorepo-folders",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn build.workflows & concurrently --kill-others-on-fail -n 'frontend,api-server,worker' \"yarn frontend\" \"yarn backend\" \"yarn worker\"",
"backend": "yarn workspace backend-apis start",
"frontend": "yarn workspace frontend-ui start",
"worker": "yarn workspace temporal-worker start",
"build": "yarn workspaces run build",
"build.workflows": "yarn workspace temporal-workflows build.watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "yarn workspaces run lint"
},
"dependencies": {
"concurrently": "^6.3.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"prettier": "^3.4.2",
"ts-loader": "^9.2.6",
"typescript": "^5.6.3"
},
"packageManager": "yarn@1.22.17"
}