-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.63 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
{
"name": "ringcentral-mfe",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-mfe.git"
},
"license": "MIT",
"author": "RingCentral",
"main": "index.js",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16.0"
},
"scripts": {
"build": "lerna run build",
"build:doc": "lerna run build:doc",
"clean": "lerna run clean",
"commit": "cz",
"check-ts": "lerna run tsc",
"ci:test": "lerna run ci:test && yarn build && yarn e2e:test && yarn it:test",
"e2e:test": "cd test/base && yarn install && yarn build && cd ../.. && yarn e2e:test:run",
"e2e:test:run": "jest --config ./test/jest-e2e.config.js --forceExit",
"it:test": "jest --config ./test/jest-it.config.js",
"lint": "yarn prettier -c packages/*/src/**/*",
"start": "cd examples/basic && yarn start",
"test": "lerna run test",
"watch": "lerna run watch",
"pre:publish": "lerna run pre:publish",
"update:version": "lerna version --amend --no-git-tag-version",
"publish": "lerna exec --no-private --no-bail -- npm publish"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.1",
"@rollup/plugin-typescript": "9.0.2",
"@testing-library/jest-dom": "5.16.5",
"@types/fs-extra": "9.0.13",
"@types/jest": "^29.2.0",
"@types/node": "18.11.5",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"commitizen": "^4.2.5",
"conventional-changelog-conventionalcommits": "5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"forever": "4.0.3",
"fs-extra": "10.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "29.3.1",
"jest-html-reporters": "3.0.11",
"lerna": "^6.0.1",
"minimist": "1.2.7",
"playwright": "1.29.0",
"prettier": "2.8.4",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-typescript2": "0.34.1",
"shelljs": "0.8.5",
"ts-jest": "^29.0.3",
"ts-node": "10.9.1",
"typedoc": "0.23.25",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.5",
"wait-on": "7.0.1"
}
}