-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
64
65
66
{
"name": "react-document-portal",
"version": "1.2.1",
"description": "React component which renders its children inside a portal attached to the document.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"coverage": "jest --coverage",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "npm run build && husky install",
"preversion": "npm run lint && npm run test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jacobbuck/react-document-portal.git"
},
"keywords": [
"react",
"component",
"portal",
"document",
"body",
"ssr"
],
"author": "Jacob Buck <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobbuck/react-document-portal/issues"
},
"homepage": "https://github.com/jacobbuck/react-document-portal#readme",
"dependencies": {
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.1"
},
"peerDependencies": {
"react": "^16.6.0 || 17 || 18",
"react-dom": "^16.6.0 || 17 || 18"
}
}