forked from Kopano-dev/kpop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.65 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "kpop",
"version": "2.7.1",
"license": "Apache-2.0",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"private": true,
"sideEffects": false,
"files": [
"i18n/locales",
"es",
"static",
".version",
"LICENSE.txt",
"NOTICE.txt"
],
"scripts": {
"start": "cross-env REACT_APP_KOPANO_BUILD=0.0.0-dev-env yarn babel src --out-dir es --verbose --watch",
"build": "yarn babel src --out-dir es",
"test": "cross-env BABEL_ENV=test jest --watch",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"deduplicate": "yarn-deduplicate -s fewer yarn.lock"
},
"dependencies": {
"cldr": "^5.2.0",
"crc32": "^0.2.2",
"hsv-rgb": "^1.0.0",
"iso-639-1": "^2.0.5"
},
"peerDependencies": {
"@gluejs/glue": "^0.3.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"notistack": "^0.8.8",
"oidc-client": "^1.11.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-intl": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@gluejs/glue": "^0.3.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^8.0.0",
"babel-plugin-react-intl": "^2.4.0",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"classnames": "^2.2.6",
"cross-env": "^5.1.4",
"eslint": "^5.0.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-intl-format": "^1.1.6",
"jest": "^22.4.3",
"jest-junit": "^3.6.0",
"notistack": "^0.8.8",
"oidc-client": "^1.11.0",
"prop-types": "^15.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^2.9.0",
"react-intl-po": "^2.2.1",
"react-router-dom": "^5.2.0",
"react-styleguidist": "9.2.0",
"react-test-renderer": "^17.0.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-dev-server": "^3.1.3",
"yarn-deduplicate": "^1.1.1"
},
"engines": {
"node": ">=6.11.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"collectCoverageFrom": [
"src/**/*.js"
],
"testURL": "https://kopano.local/"
}
}