-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 4.2 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
{
"name": "beak",
"description": "A feathery cross-platform API crafting tool",
"private": true,
"author": {
"name": "Alexander Forbes-Reed (0xdeafcafe)",
"email": "[email protected]"
},
"homepage": "https://getbeak.app",
"workspaces": {
"packages": [
"apps-host/*",
"apps-web/*",
"packages/*"
],
"nohoist": [
"**/electron-builder",
"**/electron-builder/**"
]
},
"engines": {
"yarn": "^1.4.2"
},
"resolutions": {
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2"
},
"type": "module",
"scripts": {
"build": "lerna run build --stream",
"build:apps-host": "lerna run build --stream --scope '@beak/apps-host-*' --include-dependencies",
"build:apps-host-electron": "lerna run build --stream --scope '@beak/apps-host-electron' --include-dependencies",
"build:apps-host-web": "lerna run build --stream --scope '@beak/apps-host-web' --include-dependencies",
"build:apps-web": "lerna run build --stream --scope '@beak/apps-web-*' --include-dependencies",
"build:apps-web-marketing": "lerna run build --stream --scope @beak/apps-web-marketing --include-dependencies",
"build:apps-web-share": "lerna run build --stream --scope @beak/apps-web-share --include-dependencies",
"prepackage": "yarn build:apps-host",
"prepackage:release": "yarn build:apps-host",
"package": "lerna run package --stream --scope @beak/apps-host-electron",
"package:release": "lerna run package:release --stream --scope @beak/apps-host-electron",
"start:electron-host-screenshot": "SCREENSHOT_SIZING=true lerna exec --parallel --concurrency 1 --stream --scope '@beak/{apps-host-electron,ui}' yarn start",
"start:apps-host-electron": "lerna exec --parallel --concurrency 1 --stream --scope '@beak/{apps-host-electron,ui}' yarn start",
"start:apps-host-web": "lerna exec --scope '@beak/apps-host-web' yarn start",
"start:apps-web-marketing": "lerna exec --parallel --concurrency 1 --stream --scope '@beak/apps-web-marketing' yarn start",
"start:apps-web-share": "lerna exec --parallel --concurrency 1 --stream --scope '@beak/apps-web-share' yarn start",
"dev:apps-web-marketing": "lerna exec --parallel --concurrency 1 --stream --scope '@beak/apps-web-marketing' yarn dev",
"lint": "lerna run lint --stream",
"lint-fix": "lerna run lint --stream -- --fix",
"typecheck": "lerna run typecheck --stream",
"typecheck:apps-host": "lerna run typecheck --stream --scope '@beak/apps-host-*' --include-dependencies",
"unfuck": "lerna clean && yarn --force",
"postinstall": "node ./build/package-overrides/index.js",
"release-safety": "yarn typecheck && yarn lint && yarn build"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.3",
"@redux-saga/core": "^1.3.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sanitize-html": "^2.13.0",
"@types/semver": "^7.5.8",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.12.0",
"lerna": "^8.1.9",
"nx": "^20.1.2",
"react-spring": "^9.7.4",
"sanitize-html": "^2.13.1",
"semver": "^7.6.3",
"ts-md5": "^1.3.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-sentry": "^1.4.0"
},
"dependencies": {
"@sentry/cli": "^2.23.1",
"@sentry/electron": "^4.15.1",
"@sentry/react": "^7.91.0",
"@sentry/tracing": "^7.91.0",
"chokidar": "^4.0.1",
"cross-env": "^7.0.3",
"keytar": "^7.9.0",
"prettier": "^3.3.3",
"pretty-bytes": "^6.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.28.0",
"react-router-dom": "^6.28.0",
"tslog": "^4.9.3",
"url-parse": "^1.5.10",
"valid-filename": "^4.0.0",
"vm2": "^3.9.19"
}
}