-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.94 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
{
"name": "experiences-workspace",
"private": true,
"workspaces": [
"packages/common",
"packages/guest-member-api",
"packages/myrx",
"packages/testing"
],
"scripts": {
"vsts-npm-auth": "npx vsts-npm-auth -config .npmrc",
"setup": "yarn vsts-npm-auth && yarn setup:options",
"setup:options": "yarn install --ignore-optional --ignore-scripts --non-interactive --link-duplicates",
"audit": "npx audit-ci --config ./audit-ci.jsonc",
"myrx": "npx audit-ci --config ./audit-ci.jsonc && yarn --cwd packages/myrx web",
"api": "npx audit-ci --config ./audit-ci.jsonc && yarn --cwd packages/guest-member-api start:watch",
"debug:api": "yarn --cwd packages/guest-member-api serve:debug",
"test:common": "yarn --cwd packages/common test",
"test:api": "yarn --cwd packages/guest-member-api test",
"test:myrx": "yarn --cwd packages/myrx test",
"e2e": "yarn --cwd packages/testing playwright test",
"e2e:record": "cd ./packages/myrx && npx playwright codegen --device=\"iPhone 11\" --load-storage=storage-state.json test.myrx.io && cd ../../",
"storybook": "yarn --cwd packages/common storybook",
"postinstall": "patch-package",
"clean:deep": "yarn rimraf **/node_modules **/coverage **/web-build **/storybook-static **/.jest **/build"
},
"resolutions": {
"**/ansi-regex": "5.0.1",
"**/node-fetch": "2.6.7",
"**/async": ">=3.2.3",
"**/follow-redirects": ">=1.14.8",
"**/glob-parent": ">=6.0.2",
"**/minimist": ">=1.2.6",
"**/markdown-it": ">=12.3.2",
"**/moment": ">=2.29.3",
"**/nanoid": ">=3.3.3",
"**/normalize-url": ">=7.0.3",
"**/plist": ">=3.0.5",
"**/qs": ">=6.8.1",
"**/simple-get": ">=4.0.1",
"**/simple-plist": ">=1.3.1",
"**/shelljs": ">=0.8.5",
"**/shell-quote": ">=1.7.3",
"**/url-parse": ">=1.5.10"
},
"dependencies": {
"patch-package": "^6.4.7"
},
"engines": {
"npm": ">=8.1.2",
"node": ">=16.0.0 <17.0.0"
}
}