-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.08 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
{
"name": "react-native-dimensions-hooks",
"version": "1.0.0",
"description": "Hooks to wrap the React Native Dimensions API for React Native and React Native Web",
"repository": {
"type": "git",
"url": "git+https://github.com/rjerue/react-native-dimensions-hooks.git"
},
"keywords": [
"react",
"react-native",
"react-native-web",
"hooks",
"hook",
"dimensions",
"dimension"
],
"author": "Ryan Jerue",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint && yarn build && git add dist && yarn build-storybook && git add docs"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/react-native-dimensions-hooks.esm.js",
"devDependencies": {
"@babel/core": "^7.10.2",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.19",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-native": "^0.62.13",
"babel-loader": "^8.1.0",
"babel-plugin-react-native-web": "^0.12.3",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"husky": "^4.2.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-native": "^0.62.2",
"react-native-web": "^0.12.3",
"ts-loader": "^7.0.5",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
}
}