-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 3.48 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
{
"private": "true",
"name": "realm-monorepo",
"workspaces": [
"app",
"shared",
"onboarding",
"lib/design-system",
"lib/presence",
"lib/presence/code",
"lib/conduit",
"lib/room",
"lib/room/test-ui"
],
"scripts": {
"tsc": "yarn workspace @holium/realm tsc && yarn workspace @holium/design-system tsc && yarn workspace @holium/conduit tsc && yarn workspace @holium/realm-presence tsc && yarn workspace @holium/realm-presence-notes tsc && yarn workspace @holium/realm-room tsc && yarn workspace @holium/realm-room-test-ui tsc",
"postinstall": "yarn workspace @holium/realm electron-rebuild better-sqlite3",
"build": "yarn build:app",
"build:app": "yarn workspace @holium/realm build",
"build:design-system": "yarn workspace @holium/design-system build",
"build:conduit": "yarn workspace @holium/conduit build",
"build:multiplayer": "yarn workspace @holium/realm-presence build",
"build:room": "yarn workspace @holium/realm-room build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"start": "yarn workspace @holium/realm start",
"start:onboard": "yarn workspace @holium/realm start:onboard",
"add:realm": "yarn workspace @holium/realm add -W",
"package": "yarn workspace @holium/realm package",
"package:prerelease:linux": "yarn build:multiplayer && yarn build:conduit && yarn build:room && yarn build:design-system && yarn workspace @holium/realm package:prerelease:linux",
"package:prerelease:mac": "yarn build:multiplayer && yarn build:conduit && yarn build:room && yarn build:design-system && yarn workspace @holium/realm package:prerelease:mac",
"package:prerelease:win": "yarn build:multiplayer && yarn build:conduit && yarn build:room && yarn build:design-system && yarn workspace @holium/realm package:prerelease:win",
"package:release:linux": "yarn build:multiplayer && yarn build:conduit && yarn build:room && yarn build:design-system && yarn workspace @holium/realm package:release:linux",
"package:release:mac": "yarn build:multiplayer && yarn build:conduit && yarn build:room && yarn build:design-system && yarn workspace @holium/realm package:release:mac",
"package:release:win": "yarn build:multiplayer && yarn build:conduit && yarn build:room && yarn build:design-system && yarn workspace @holium/realm package:release:win",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"@etchteam/storybook-addon-css-variables-theme": "^1.4.0",
"alchemy-sdk": "^2.2.1",
"ethers": "^5.7.0",
"qrcode.react": "^3.1.0",
"socket.io-client": "^4.5.4"
},
"version": "0.1.11-alpha",
"devDependencies": {
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.3",
"storybook-addon-state": "^1.0.3",
"typescript": "^4.9.4"
},
"preconstruct": {
"packages": [
"shared",
"lib/design-system",
"lib/presence",
"lib/conduit",
"lib/room"
]
}
}