forked from botfront/rasa-webchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.89 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
{
"name": "rasa-webchat",
"version": "0.8.8",
"description": "Chat web widget for React apps and Rasa Core chatbots",
"module": "module/index.js",
"main": "lib/index.js",
"repository": "git@https://github.com/mrbot-ai/rasa-webchat.git",
"author": "Mr. Bot <human@mrbot.ai>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config ./webpack.prod.js -p",
"test": "jest --coverage",
"prepare": "npm run build",
"release": "standard-version"
},
"keywords": [
"react",
"chat",
"widget",
"javascript"
],
"dependencies": {
"@stomp/stompjs": "^5.4.2",
"html-webpack-plugin": "^3.2.0",
"immutable": "^3.8.2",
"prop-types": "^15.7.2",
"react-immutable-proptypes": "^2.1.0",
"react-markdown": "^4.2.2",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"sockjs-client": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^19.0.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.6.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^3.0.7",
"jest": "^20.0.4",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"prettier-eslint": "^5.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"redux-mock-store": "^1.5.3",
"sass-loader": "^6.0.7",
"standard-version": "^7.0.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/mocks/fileMock.js",
"\\.(css|scss)$": "<rootDir>/mocks/styleMock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/test-setup.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}