This repository has been archived by the owner on May 3, 2022. It is now read-only.
forked from mvasin/react-div-100vh
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.75 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
63
{
"name": "@moonpay/react-div-100vh",
"version": "0.4.3",
"description": "A React component that aims to solve '100vh' issue in mobile browsers",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production",
"test": "jest"
},
"keywords": [],
"license": "MIT",
"peerDependencies": {
"react": ">15",
"react-dom": ">15"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.0",
"concurrently": "^3.6.1",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"ip": "^1.1.5",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"raf": "^3.4.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.5.2",
"style-loader": "^0.21.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"author": "Mikhail Vasin <[email protected]>",
"homepage": "https://github.com/mvasin/react-div-100vh",
"repository": {
"type": "git",
"url": "[email protected]:mvasin/react-div-100vh.git"
}
}