-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 3.38 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-match-breakpoints",
"version": "2.0.1",
"description": "Lightweight, performant and easy to use media query library for React📱 💻 🖥️",
"engines": {
"node": ">=12.4.0"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/index.js",
"es2017": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/michalklim/react-match-breakpoints.git"
},
"bugs": {
"url": "https://github.com/michalklim/react-match-breakpoints/issues"
},
"keywords": [
"react",
"responsive",
"breakpoints",
"matchMedia",
"rwd"
],
"scripts": {
"build": "rimraf ./dist && rollup -c --compact && tsc -b tsconfig.production.json",
"build:analyze": "webpack --config webpack.production-analyze.js --mode production && tsc -b tsconfig.production.json",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"start": "rimraf ./dist && concurrently npm:dev:*",
"prettier": "prettier",
"format": "npm run prettier -- --write '{,!(dist|examples)/**/}*.js'",
"check-types": "tsc",
"lint": "eslint src/** --ext .ts,.tsx",
"release": "np",
"dev:start": "rollup -c --compact --watch",
"dev:start-storybook": "start-storybook -p 6006 --quiet",
"dev:generate-types": "tsc -b tsconfig.production.json -w",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages --out=storybook-static",
"prepublishOnly": "npm run build"
},
"author": "Michal Klim <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">= 16.8.0"
},
"dependencies": {
"utility-types": "3.10.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
"@babel/plugin-transform-modules-commonjs": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.0",
"@babel/preset-typescript": "7.9.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-node-resolve": "11.0.1",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@testing-library/react": "10.0.1",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "25.1.4",
"@types/react": "16.9.25",
"@types/react-dom": "16.9.5",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"babel-jest": "25.1.0",
"babel-loader": "^8.2.2",
"codecov": "3.6.5",
"concurrently": "5.3.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"husky": "4.2.3",
"jest": "25.1.0",
"np": "6.2.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-is": "16.13.1",
"react-test-renderer": "16.13.1",
"rimraf": "3.0.2",
"rollup": "2.36.1",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}