-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
110 lines (110 loc) · 3.99 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
{
"name": "webchat",
"version": "1.4.48",
"description": "",
"main": "lib/index.js",
"scripts": {
"clean:lib": "rm -rf lib",
"clean:dist": "rm -rf dist",
"build": "npm run clean:dist && NODE_ENV=production npm run build:webpack",
"build:webpack": "node bin/build.js",
"build:js": "babel src -d lib",
"start": "npm run clean:dist && node bin/build-dev",
"lib": "npm run clean:lib && node bin/build-lib",
"lib:dev": "NODE_ENV=development npm run lib",
"prettier": "prettier --write \"src/**/*.?(js|?(s)css|json)\" && eslint --fix src",
"lint": "if [ -n \"$HUDSON_URL\" ]; then echo '!! linter crashes and is therefore not executed on xmake !!'; else eslint src; fi",
"test": "MOCHA_TEST=true nyc --reporter=text mocha 'src/**/*.test.js'",
"testHtml": "MOCHA_TEST=true nyc --reporter=html --report-dir coverage/html mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/mocha.xml 'src/**/*.test.js'",
"coverage": "nyc report --cache false --reporter=html --report-dir coverage/html",
"coverage:clover": "nyc report --cache false --reporter=clover --report-dir coverage/clover",
"coverage:cobertura": "nyc report --cache false --reporter=cobertura --report-dir coverage/cobertura",
"coverage:html": "nyc report --cache false --reporter=html --report-dir coverage/html",
"coverage:lcov": "nyc report --cache false --reporter=lcov --report-dir coverage/lcov"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"@reduxjs/toolkit": "^1.8.1",
"@types/react": "16.8.22",
"axios": "^0.26.1",
"classnames": "^2.2.5",
"prop-types": "^15.8.1",
"query-string": "^5.0.1",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.13.1",
"react-markdown": "5.0.2",
"react-redux": "^7.2.8",
"react-slick": "^0.25.2",
"redux": "^4.2.0",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.4.1",
"remark-gfm": "^1.0.0",
"sanitize-html-react": "^1.13.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/generator": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-transform-arrow-functions": "^7.16.7",
"@babel/plugin-transform-regenerator": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@babel/runtime": "7.12.1",
"@ui5/cli": "^2.14.9",
"autoprefixer": "^9.8.8",
"axios-mock-adapter": "^1.18.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-react-intl": "^5.1.10",
"chai": "^4.3.6",
"chai-like": "^1.1.1",
"core-js": "3.3.6",
"css-loader": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-zavatta": "^6.0.3",
"eslint-config-zavatta-react": "^2.3.1",
"eslint-plugin-react": "^7.29.4",
"esm": "^3.2.25",
"file-loader": "^1.1.5",
"ignore-styles": "^5.0.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^8.3.0",
"mocha-junit-reporter": "^2.0.2",
"mock-local-storage": "^1.1.22",
"nock": "^13.2.4",
"node-sass": "^4.14.0",
"nyc": "^15.1.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"precss": "^2.0.0",
"prettier": "^1.8.2",
"progress-bar-webpack-plugin": "^1.10.0",
"redux-mock-store": "^1.5.4",
"sass-loader": "^7.3.1",
"sinon": "^9.2.4",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.11.3"
},
"resolutions": {
"serialize-javascript": "^2.1.2"
}
}