-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "@onlyoffice/document-editor-react",
"version": "1.5.1",
"description": "React component for ONLYOFFICE Document Server",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ONLYOFFICE/document-editor-react/issues"
},
"homepage": "https://www.onlyoffice.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ONLYOFFICE/document-editor-react.git"
},
"author": "Ascensio System SIA <integration@onlyoffice.com> (https://www.onlyoffice.com)",
"maintainers": [
"Ascensio System SIA <integration@onlyoffice.com> (https://www.onlyoffice.com)"
],
"scripts": {
"rollup": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^7.6.11",
"@storybook/addon-interactions": "^7.6.11",
"@storybook/addon-links": "^7.6.11",
"@storybook/addon-onboarding": "1.0.11",
"@storybook/blocks": "^7.6.11",
"@storybook/react": "^7.6.11",
"@storybook/react-webpack5": "^7.6.11",
"@storybook/test": "^7.6.11",
"@testing-library/react": "^14.2.0",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.48",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.6.11",
"tslib": "^2.6.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18",
"react-dom": "^16.9.0 || ^17 || ^18"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"universal": "dist/umd/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"onlyoffice"
]
}