-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 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
57
58
59
{
"name": "react-lazy-hydrate",
"version": "1.0.14",
"description": "React component to do progressive/partial hydration",
"main": "lib/index.js",
"scripts": {
"postinstall": "yarn outdated",
"prepublish": "yarn build",
"build": "npx babel src --out-dir lib",
"test": "echo 'TODO: Add tests!'",
"lint": "eslint src/**/*.jsx",
"lint:fix": "eslint src/**/*.jsx --fix",
"depcheck": "depcheck --ignores='@babel/*,babel-plugin-transform-react-remove-prop-types,core-js,depcheck,husky,prettier,react-dom'"
},
"homepage": "https://github.com/Kennypt/react-lazy-hydrate/blob/master/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Kennypt/react-lazy-hydrate.git"
},
"keywords": [
"react",
"hydrate"
],
"author": "KennyPT <ricardo.rocha.pinheiro@gmail.com>",
"license": "ISC",
"engines": {
"node": "^12.0.0",
"yarn": "^1.12.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint src/**/*.jsx --fix",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"core-js": "^3.6.5",
"depcheck": "^1.0.0",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}