This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "react-mention-plugin",
"version": "2.1.3",
"description": "A very simple, but awesome textarea component that allows you to \"@mention\" someone in a text message.",
"private": false,
"main": "./lib/index.js",
"license": "MIT",
"author": {
"name": "John Dave Decano",
"email": "[email protected]",
"url": "http://johndavedecano.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johndavedecano/react-mention-plugin.git"
},
"keywords": [
"react-mentions",
"mentions",
"draftsjs",
"react",
"redux",
"mentions",
"autosuggest",
"memory-leak",
"unicorns",
"preact",
"tools",
"typehead"
],
"dependencies": {
"popper.js": "^1.12.9",
"prop-types": "^15.6.0",
"react-onclickoutside": "^6.7.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"react-dom": "^16.2.0",
"react": "^16.2.0"
},
"scripts": {
"lint": "eslint src/mentions",
"start": "node server.js",
"build": "webpack --config ./webpack.config.prod.js",
"prepublish": "npm run build"
}
}