forked from jscottsmith/react-scroll-parallax-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "react-scroll-parallax-examples",
"version": "1.0.0",
"description":
"React parallax examples using react-scroll-parallax npm package",
"repository": {
"type": "git",
"url": "https://github.com/jscottsmith/react-scroll-parallax-examples"
},
"main": "lib/index.js",
"scripts": {
"dev": "webpack --progress --colors --watch",
"dev-server": "node ./examples/parallax-example/dist/server",
"gh-pages": "NODE_ENV=production webpack --progress --colors"
},
"keywords": ["examples", "react", "parallax", "scroll", "component"],
"author": "J Scott Smith",
"license": "ISC",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scroll-parallax": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^3.1.4",
"css-loader": "^0.28.0",
"express": "^4.14.1",
"file-loader": "^0.11.1",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.3",
"raw-loader": "^0.5.1",
"regenerator-runtime": "^0.10.5",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.5.4"
}
}