-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.91 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
{
"name": "react-on-scroll",
"version": "0.2.1",
"description": "React to scroll events: animate components, lazy load data, infinite scroll",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack",
"lint": "eslint src",
"deploy": "gh-pages -d build",
"start:pages": "webpack-dev-server --config webpack.config.pages.js",
"build:pages": "webpack -p --config webpack.config.pages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erichbehrens/react-on-scroll.git"
},
"author": "Erich Behrens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erichbehrens/react-on-scroll/issues"
},
"homepage": "https://erichbehrens.github.io/react-on-scroll",
"dependencies": {
"react": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.9",
"raw-loader": "^0.5.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"static-site-generator-webpack-plugin": "^3.4.1",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.7"
}
}