-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 3.9 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
{
"private": true,
"name": "realm-monorepo",
"workspaces": [
"app",
"shared",
"holium-com",
"hosting-holium-com",
"join-holium-com",
"lib/design-system",
"lib/presence",
"lib/presence/code",
"lib/room",
"lib/room/test-ui",
"lexicon",
"trove"
],
"scripts": {
"tsc": "yarn workspace @holium/realm tsc --noemit && yarn workspace @holium/design-system tsc --noemit && yarn workspace @holium/realm-presence tsc --noemit && yarn workspace @holium/shared tsc --noemit && yarn workspace @holium/holium-com tsc --noemit && yarn workspace @holium/hosting-holium-com tsc --noemit && yarn workspace @holium/join-holium-com tsc --noemit && yarn workspace @holium/lexicon tsc --noemit && yarn workspace @holium/trove tsc --noemit",
"postinstall": "yarn workspace @holium/realm postinstall",
"build": "yarn build:app",
"build:app": "yarn workspace @holium/realm build",
"build:design-system": "yarn workspace @holium/design-system build",
"build:multiplayer": "yarn workspace @holium/realm-presence build",
"precommit": "yarn lint-staged",
"lint": "eslint --fix $(git diff origin/master --name-only -- \"*.js\" \"*.jsx\" \"*.ts\" \"*.tsx\") --no-error-on-unmatched-pattern",
"lint:ci": "eslint $(git diff origin/master --name-only -- \"*.js\" \"*.jsx\" \"*.ts\" \"*.tsx\") --no-error-on-unmatched-pattern",
"lint:all": "eslint --fix . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore && yarn tsc",
"lint:ci:master": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"cypress:open": "cypress open",
"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:design-system && yarn workspace @holium/realm package:prerelease:linux",
"package:prerelease:mac": "yarn build:multiplayer && yarn build:design-system && yarn workspace @holium/realm package:prerelease:mac",
"package:prerelease:win": "yarn build:multiplayer && yarn build:design-system && yarn workspace @holium/realm package:prerelease:win",
"package:release:linux": "yarn build:multiplayer && yarn build:design-system && yarn workspace @holium/realm package:release:linux",
"package:release:mac": "yarn build:multiplayer && yarn build:design-system && yarn workspace @holium/realm package:release:mac",
"package:release:win": "yarn build:multiplayer && yarn build:design-system && yarn workspace @holium/realm package:release:win",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006",
"prepare": "husky install"
},
"version": "0.1.11-alpha",
"devDependencies": {
"@etchteam/storybook-addon-css-variables-theme": "^1.4.0",
"@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",
"cypress": "^12.17.0",
"cypress-plugin-stripe-elements": "^1.0.2",
"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-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.3",
"storybook-addon-state": "^1.0.3",
"typescript": "^4.9.4"
},
"preconstruct": {
"packages": [
"shared",
"lib/design-system",
"lib/presence",
"lib/room",
"lexicon",
"trove"
]
},
"lint-staged": {
"*.{js,mjs,cjs,jsx,ts,tsx}": "yarn eslint --fix"
}
}