-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 4.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"name": "dogu",
"version": "2.9.4",
"license": "SEE LICENSE IN https://github.com/dogu-team/dogu/blob/main/LICENSE.md",
"author": "Dogu Technologies",
"repository": "https://github.com/dogu-team/dogu.git",
"scripts": {
"build": "turbo run build --filter='./packages/**' --filter='./projects/**' --filter='./dogu-actions/**'",
"build:actions": "turbo run build --filter='./dogu-actions/**'",
"build:archive": "turbo run build:archive",
"build:packages": "turbo run build --filter='./packages/typescript*/**/*'",
"build:python": "turbo run build:python",
"clean": "shx rm -rf node_modules/.cache/turbo && turbo run clean",
"clean:packages": "turbo run clean --filter='./packages/typescript*/**/*' --concurrency=50%",
"clean-lock": "rm $(find . | grep yarn.lock) && rm -rf .yarn/cache",
"env-generator": "node scripts/env-generator.mjs",
"git:macos:remove-non-remote-branch": "git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D",
"lint": "turbo run lint",
"mirror:nm": "ts-node scripts/nm-space/mirror",
"newbie": "yarn run newbie:localdev && yarn run newbie:cicd && yarn run newbie:nm-space && yarn run newbie:python",
"newbie:cicd": "yarn set version 3.3.1 && yarn install",
"newbie:localdev": "husky install",
"newbie:nm-space": "ts-node scripts/nm-space/mirrorCopyOnly && ts-node scripts/nm-space/run run 'yarn install --no-immutable && yarn run build:packages'",
"newbie:python": "turbo run newbie:python",
"publish:github:dev": "cross-env DOGU_RUN_TYPE=development yarn workspaces foreach -tvi --jobs unlimited run publish:github",
"publish:github:prod": "cross-env DOGU_RUN_TYPE=production yarn workspaces foreach -tvi --jobs unlimited run publish:github",
"publish:npm:dev": "cross-env DOGU_RUN_TYPE=development yarn workspaces foreach -tvi --jobs unlimited run publish:npm",
"publish:npm:prod": "cross-env DOGU_RUN_TYPE=production yarn workspaces foreach -tvi --jobs unlimited run publish:npm",
"rebuild": "yarn run clean && yarn run build --force",
"rebuild:archive": "turbo run clean:archive --force && turbo run build:archive --force",
"rebuild:packages": "yarn run clean:packages && yarn run build:packages --force",
"reset": "yarn run clean-lock && yarn install && yarn run rebuild",
"show": "yarn workspaces list",
"start:console": "yarn workspace console-web-server run start & yarn workspace console-web-front run start",
"start:console:inspect": "yarn workspace console-web-server run start:inspect & yarn workspace console-web-front run start",
"test": "turbo run test",
"third-party:download": "ts-node scripts/third-parties/download",
"third-party:download:build": "yarn run third-party:download && turbo run build:archive",
"util:multiple-proc": "ts-node scripts/util/multiple-proc detach",
"util:parse-device": "ts-node scripts/device-csv-parser",
"util:rename-files": "ts-node scripts/util/rename-files rename",
"watch": "turbo run watch --filter='./packages/**' --filter='./projects/**' --filter='./dogu-actions/**' --parallel",
"watch:packages:only-changed": "ts-node scripts/watch-packages-only-changed"
},
"workspaces": [
"packages/cpp/*",
"packages/csharp/*",
"packages/go/*",
"packages/swift/*",
"packages/typescript/*",
"packages/typescript-dev-private/*",
"packages/typescript-private/*",
"packages/python/*",
"projects/*",
"prebuilds/*",
"samples/*",
"e2e",
"validators",
"dogu-actions/*"
],
"dependencies": {
"tar": "6.1.15",
"ws": "8.9.0"
},
"devDependencies": {
"@nestjs/cli": "9.1.2",
"@types/copyfiles": "2",
"@types/eslint": "8",
"@types/lodash": "4",
"@types/node": "18.15.11",
"@types/nodemon": "1.19.2",
"@types/prettier-package-json": "2",
"@types/shelljs": "0.8.11",
"@types/tar": "6.1.5",
"@types/ws": "8",
"@types/yargs": "17.0.23",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"ansi-styles": "6.2.1",
"chalk": "4.1.2",
"chokidar": "3.5.3",
"compressing": "1.9.0",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"eslint": "8.52.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"lodash": "4.17.21",
"node-gyp": "9.0.0",
"nodemon": "2.0.22",
"npm-check-updates": "16.14.6",
"organize-imports-cli": "0.10.0",
"prettier": "3.0.3",
"prettier-package-json": "2.8.0",
"redis-cli": "2.1.2",
"shelljs": "0.8.5",
"shx": "0.3.4",
"timeout-cli": "0.3.2",
"tree-kill": "1.2.2",
"ts-node": "10.9.1",
"turbo": "1.10.15",
"typescript": "4.7.4",
"yargs": "17.7.1"
},
"packageManager": "[email protected]",
"url": "https://github.com/dogu-team/dogu"
}