forked from wellyshen/react-cool-dimensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.48 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
{
"name": "react-cool-dimensions",
"version": "2.0.7",
"description": "React hook to measure an element's size and handle responsive components.",
"license": "MIT",
"homepage": "https://react-cool-dimensions.netlify.app",
"repository": "https://github.com/wellyshen/react-cool-dimensions",
"bugs": "https://github.com/wellyshen/react-cool-dimensions/issues",
"keywords": [
"react",
"hook",
"react-hook",
"use",
"use-dimensions",
"resize",
"observer",
"resize-observer",
"dimensions",
"measure",
"size",
"responsive-components",
"container-queries",
"performance",
"typescript"
],
"author": "Welly Shen <[email protected]> (https://github.com/wellyshen)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "yarn clean:dev && rollup -c rollup/config.js -w --environment BUILD:dev",
"lint": "run-s lint:*",
"lint:code": "eslint --fix . --ext .js,.ts,.tsx",
"lint:type": "tsc",
"lint:style": "stylelint --fix \"**/*.{css,ts,tsx}\"",
"lint:format": "prettier -w . -u --loglevel silent",
"test": "jest",
"test:watch": "yarn test --watch",
"test:cov": "yarn clean:cov && yarn test --coverage",
"build:demo": "yarn clean:dev && yarn clean:demo && rollup -c rollup/config.js --environment BUILD:demo",
"build:dist": "yarn clean:dist && BABEL_ENV=dist rollup -c rollup/config.js --environment BUILD:dist",
"build": "run-s build:*",
"preversion": "run-s lint test build:dist",
"postversion": "git push --follow-tags --no-verify && npm publish && yarn clean:dist",
"clean:dev": "rimraf demo/.dev",
"clean:demo": "rimraf public",
"clean:dist": "rimraf dist .size-snapshot.json",
"clean:cov": "rimraf coverage",
"clean": "run-p clean:*",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{css,ts,tsx}": "stylelint --fix",
"**/*": "prettier -w -u"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.4.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-url": "^6.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/resize-observer-browser": "^0.1.5",
"eslint": "^7.2.0",
"eslint-config-welly": "^1.10.6",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.0",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.51.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}