-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "infinite-scrolling",
"version": "1.0.1",
"description": "A infinite scroll element implementation in React using css animation",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/index.js --out-file index.js",
"dev": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yang03/infinite-scrolling.git"
},
"author": "Yang",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yang03/infinite-scrolling/issues"
},
"homepage": "https://github.com/Yang03/infinite-scrolling#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"babel-loader": "^8.0.6",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"webpack": "^4.20.0",
"webpack-cli": "^3.1.1"
}
}