-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.22 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
{
"name": "hookedup",
"version": "0.3.1",
"description": "A collection of React hooks",
"author": "inwake",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/inwake/hookedup.git"
},
"main": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.5.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-xss": "^0.1.12",
"jest": "^29.6.4",
"react-native-config": "^1.5.1",
"react-test-renderer": "^18.2.0",
"rollup": "^1.32.1",
"rollup-plugin-sass": "^1.12.20",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./dist/*": "./dist/*.js"
},
"keywords": [
"react",
"react hooks",
"firebase"
],
"dependencies": {
"@react-native-community/geolocation": "^3.0.6",
"@react-native-firebase/analytics": "^18.6.1",
"@react-native-firebase/app": "^18.6.1",
"@react-native-firebase/auth": "^18.6.1",
"prop-types": "^15.8.1",
"react": "^18",
"react-dom": "^18",
"react-native": "^0.72",
"react-native-config": "^1.5.1",
"react-native-safe-area-context": "^4.7.1"
}
}