forked from fuermosi777/react-free-scrollbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
{
"name": "react-free-scrollbar",
"version": "0.3.0",
"description": "A react module for creating customizable scroll area",
"main": "dist/index.js",
"scripts": {
"demo-dev": "webpack-dev-server --config webpack.config.dev.js --hot --inline --colors --progress",
"demo-build": "webpack --config webpack.config.prod.js --hot --inline --colors --progress",
"dist": "babel src/index.jsx -u -o dist/index.js --stage 1 --presets react"
},
"repository": {
"type": "git",
"url": "https://github.com/fuermosi777/react-free-scrollbar.git"
},
"keywords": [
"react"
],
"author": "Hao Liu <[email protected]> (http://liuhao.im)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuermosi777/react-free-scrollbar/issues"
},
"homepage": "https://github.com/fuermosi777/react-free-scrollbar#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-hot-loader": "^3.1.3",
"style-loader": "^0.13.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1"
}
}