-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"name": "react-yall",
"description": "Lazy load images/videos/iframes A react wrapper for yall.js using React Context.",
"version": "0.1.7",
"homepage": "https://saltas888.github.io/react-yall/",
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/saltas888/react-yall"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4"
},
"scripts": {
"start": "react-scripts start",
"build": "webpack",
"build-example": "rm -rf docs/ && react-scripts build && mv build docs",
"test": "react-scripts test",
"eject": "react-scripts eject",
"update": "npm run build && npm version patch && npm publish",
"deploy": "gh-pages -d docs"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"faker": "^4.1.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "2.1.5",
"gh-pages": "^2.0.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}