-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
92 lines (92 loc) · 2.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "styled-react-modal",
"version": "3.1.2",
"description": "A React modal built with styled-components.",
"main": "build/umd/index.js",
"module": "build/mjs/index.mjs",
"scripts": {
"test": "jest --coverage --verbose",
"lint": "prettier src/ tests/",
"prepublish": "yarn run build",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderRichey/styled-react-modal.git"
},
"keywords": [
"react-modal",
"styled-components",
"modal",
"react"
],
"tags": [
"react",
"modal",
"styled-components"
],
"author": "Alexander Richey <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/AlexanderRichey/styled-react-modal/issues"
},
"homepage": "https://github.com/AlexanderRichey/styled-react-modal#readme",
"peerDependencies": {
"react": ">=18 <19",
"react-dom": ">=18 <19",
"styled-components": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.0.3",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.79.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^6.1.1"
},
"resolutions": {
"eslint-utils": "^2.0.0",
"mixin-deep": "^2.0.1",
"set-value": "^3.0.2",
"minimist": "^0.2.1",
"acorn": "^6.4.1",
"kind-of": "^6.0.3",
"serialize-javascript": "^3.1.0",
"ssri": "^8.0.1",
"node-notifier": "^8.0.1",
"terser": "5.14.2",
"ajv": "6.12.6"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "jsdom"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}