-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
107 lines (107 loc) · 3.08 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
{
"name": "@webex/message-composer",
"version": "2.5.0",
"description": "React message composer",
"main": "dist/index.js",
"author": "Michael Wegman ([email protected])",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"start": "webpack-dev-server --config webpack/dev.config.js",
"build": "webpack --config webpack/prod.config.js",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run",
"storybook": "start-storybook"
},
"dependencies": {
"classnames": "^2.2.6",
"commonmark": "^0.29.1",
"core-js": "3",
"lodash.isequal": "^4.5.0",
"markdown-it": "^10.0.0",
"markdown-it-linkscheme": "^1.0.2",
"prismjs": "^1.15.0",
"prop-types": "^15.7.2",
"quill": "^1.3.7",
"quill-mention": "^2.2.3",
"react-icons-kit": "^1.2.1",
"tiny-emitter": "^2.1.0",
"turndown": "^5.0.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"@storybook/react": "5.2.8",
"@webex/eslint-config-base": "0.8.0",
"@webex/eslint-config-react": "0.8.0",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.5",
"babel-preset-minify": "^0.5.1",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mocha": "6.2.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "3.1.0",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"prettier": "1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"semantic-release": "15.13.31",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "2.2.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.5.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"resolutions": {
"lodash": "^4.17.14"
},
"repository": {
"type": "git",
"url": "https://github.com/webex/message-composer"
},
"keywords": [
"message-composer"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}