-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "react-fittext",
"version": "1.0.0",
"description": "A React plugin to fit the text in the screen",
"main": "lib/ReactFitText.js",
"scripts": {
"build_client": "webpack -p --config ./client/webpack.config.js",
"dev_install": "npm install && npm dedupe",
"dev": "webpack --config ./client/webpack.config.js && webpack-dev-server --config ./client/webpack.config.js --inline --hot --content-base ./public"
},
"keywords": [
"react",
"fittext",
"responsive",
"react-component"
],
"author": {
"name": "Sergio R. Gianazza",
"email": "[email protected]",
"url": "http://www.softwarepsychonaut.com"
},
"license": {
"type": "MIT",
"url": "http://www.mit-license.org"
},
"bugs": {
"url": "https://github.com/gianu/react-fittext/issues"
},
"homepage": "http://softwarepsychonaut.com/react-fittext",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.24",
"css-loader": "^0.9.0",
"expose-loader": "^0.5.3",
"file-loader": "^0.8.1",
"gulp": "~3.9.1",
"gulp-jshint": "^2.1.0",
"gulp-react": "^3.1.0",
"gulp-util": "^3.0.1",
"html-webpack-plugin": "^1.6.1",
"nib": "^1.1.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "3.1.1",
"run-sequence": "^2.2.1",
"style-loader": "^0.12.4",
"stylus": "^0.54.5",
"stylus-loader": "^1.3.0",
"url-loader": "^0.5.5",
"webpack": "^1.4.7",
"webpack-dev-server": "^1.6.5"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"dependencies": {
"create-react-class": ">=15.5.3",
"prop-types": ">=15.5.10"
}
}