This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "react-text-input",
"version": "0.0.8",
"author": "Savva Mikhalevski",
"description": "Textarea and input components with custom scrollbars and aurogrow in both axes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smikhalevski/react-text-input.git"
},
"homepage": "https://github.com/smikhalevski/react-text-input",
"main": "target/out/index.js",
"files": [
"src/main/",
"target/out/",
".babelrc"
],
"keywords": [
"react",
"textarea",
"input",
"autogrow",
"autoheight",
"scrollbar",
"scroll"
],
"scripts": {
"package": "webpack --p",
"package-demo": "webpack --p --config webpack.demo.config.js",
"start": "webpack-dev-server --progress --d --config webpack.demo.config.js --content-base target/demo/ --host 0.0.0.0 --port 8080"
},
"devDependencies": {
"webpack": "1.12.9",
"webpack-dev-server": "1.12.0",
"babel-loader": "6.2.0",
"hson-loader": "~1.0.0",
"less-loader": "2.2.2",
"style-loader": "0.13.0",
"css-loader": "0.23.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "1.6.1",
"extract-text-webpack-plugin": "0.8.2",
"babel-core": "6.3.26",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-plugin-transform-runtime": "6.6.0",
"hanson": "~1.1.1",
"less": "2.6.1",
"classnames": "",
"classlist-polyfill": "1.0.2",
"react": ">=0.13.0"
},
"dependencies": {
"react-dom": ">=0.13.0",
"react-scroll-box": "~0.2.0"
},
"peerDependencies": {
"react": ">=0.13.0"
}
}