-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
77 lines (77 loc) · 2.06 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
{
"name": "react-media",
"version": "2.0.0-rc.1",
"description": "CSS media queries for React",
"repository": "ReactTraining/react-media",
"license": "MIT",
"author": "Michael Jackson",
"files": [
"cjs",
"esm",
"umd",
"index.d.ts"
],
"main": "index.js",
"module": "esm/react-media.js",
"unpkg": "umd/react-media.js",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"clean": "git clean -fdX .",
"lint": "eslint modules",
"test": "jest",
"testTypes": "tsc --noEmit --jsx react typeTest.tsx"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"invariant": "^2.2.2",
"json2mq": "^0.2.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-babel": "5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@types/react": "^16.8.18",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^4.0.0",
"gzip-size": "^3.0.0",
"jest": "^23.6.0",
"pascal-case": "^2.0.1",
"pretty-bytes": "^4.0.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^2.9.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^3.4.5"
},
"keywords": [
"react",
"media",
"media query",
"query",
"css",
"responsive"
]
}