forked from ringcentral/ringcentral-embeddable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.13 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.13 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ringcentral-embeddable",
"version": "1.5.0",
"description": "A RingCentral Embeddable Widget Application",
"main": "index.js",
"license": "MIT",
"browserslist": "> 0.25%, ie > 10",
"scripts": {
"test": "jest --maxWorkers=2",
"start": "npm run dev-server",
"dev-server": "webpack-dev-server --config webpack-dev-server.config.js --inline",
"build": "NODE_ENV=production webpack --config webpack-production.config.js",
"build-extension": "NODE_ENV=production RELEASE_DIR=extension LOCAL_EXTENSION_MODE=1 webpack --config webpack-production.config.js"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.3.4",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^2.1.0",
"dotenv": "^6.2.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^3.0.1",
"jest": "^25.3.0",
"jest-puppeteer": "^4.4.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"puppeteer": "^5.2.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^4.2.1",
"url-loader": "^1.1.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.4",
"@rc-ex/core": "^0.4.2",
"@ringcentral-integration/core": "^0.12.3",
"@ringcentral-integration/glip-widgets": "^0.0.1",
"@ringcentral-integration/i18n": "^2.0.1",
"@ringcentral-integration/locale-loader": "^2.0.2",
"@ringcentral-integration/phone-number": "^1.0.7",
"@ringcentral/juno": "^1.1.2",
"@ringcentral/sdk": "^4.3.3",
"@ringcentral/subscriptions": "^4.3.3",
"classnames": "^2.2.5",
"core-js": "^2.6.5",
"format-message": "^6.2.3",
"isomorphic-fetch": "^2.2.1",
"isomorphic-ws": "4.0.1",
"mini-css-extract-plugin": "^1.3.3",
"moment": "^2.24.0",
"normalize-css": "^2.3.1",
"prop-types": "^15.5.8",
"qs": "^6.5.1",
"raven-js": "^3.27.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^5.0.4",
"react-router": "^3.2.0",
"react-router-redux": "^4.0.7",
"redux": "^4.0.5",
"ringcentral-client": "^1.0.0-beta.2",
"ringcentral-integration": "^0.12.3",
"ringcentral-widgets": "^0.12.3",
"styled-components": "5.2.0",
"uuid": "^3.2.1",
"whatwg-fetch": "^2.0.3"
},
"resolutions": {
"immutable": "3.7.6"
},
"engines": {
"node": ">=8"
},
"ci": {
"ringcentral-embeddable": "**"
}
}