-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "react-more-load",
"version": "1.1.2",
"description": "a load more list component base on React",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"compile": "NODE_ENV=production babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WarrenJones/react-loadmore.git"
},
"keywords": [
"react",
"loadmore",
"infinite"
],
"author": "warren",
"license": "ISC",
"bugs": {
"url": "https://github.com/WarrenJones/react-loadmore/issues"
},
"homepage": "https://github.com/WarrenJones/react-loadmore#readme",
"peerDependencies": {
"intersection-observer-polyfill": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"classnames": "^2.2.6",
"html-webpack-plugin": "^3.2.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"svgaplayerweb": "^2.3.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"autoprefixer": "^9.5.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"intersection-observer-polyfill": "^0.1.0"
},
"browserslist": [
"last 2 version",
"> 1%"
]
}