-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 1.59 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
{
"name": "monorepo",
"license": "MIT",
"author": "Nissan Hanina <nissanhanina@gmail.com>",
"private": true,
"workspaces": [
"*"
],
"scripts": {
"build": "yarn workspaces foreach --verbose --topological --parallel run build",
"clean": "yarn workspaces foreach --verbose --parallel run clean",
"lint": "eslint . --ext .ts",
"start": "yarn workspace backend run start",
"check-version": "yarn version check --interactive",
"check-version:apply": "yarn run check-version && yarn version apply --all",
"publish": "yarn workspaces foreach --no-private --verbose npm publish --tolerate-republish --access public",
"upgrade-interactive": "yarn upgrade-interactive",
" ": "_______GLOBAL_TASKS_____",
"g:tsc:clean": "cd $INIT_CWD && tsc -b --clean",
"g:dev": "cd $INIT_CWD && tsc -b --clean",
"g:tsc:all": "yarn run build",
"g:tsc:project": "cd $INIT_CWD && tsc -b --verbose",
"g:tsc:project:watch": "cd $INIT_CWD && tsc -b -w --verbose",
"g:tsc:cjs": "cd $INIT_CWD && tsc --outDir .dist/cjs --module CommonJS --declarationMap false --composite false --declaration false --declarationDir null",
"g:parallel": "cd $INIT_CWD && concurrently"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"concurrently": "^7.4.0",
"eslint": "8.25.0",
"typescript": "^4.8.4"
},
"engines": {
"node": "16.x"
},
"packageManager": "yarn@3.2.0"
}