This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "react-native-url-router",
"version": "0.2.2",
"description": "A url based native navigation for react-native apps. Designed to integrate react-router and react-native-screens.",
"main": "dist/index.js",
"homepage": "https://github.com/software-mansion-labs/react-native-url-router#readme",
"scripts": {
"test": "vitest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src/**",
"build": "tsc",
"pack": "npm pack"
},
"keywords": [],
"author": {
"email": "[email protected]",
"name": "Aleksander Mikucki"
},
"license": "MIT",
"readmeFilename": "README.md",
"types": "dist/index.d.ts",
"files": [
"/dist",
"README.md",
"package.json"
],
"peerDependencies": {
"history": "^5.3.0",
"react": "*",
"react-native": "*",
"react-native-pager-view": "^6.1.2",
"react-native-screens": "^3.18.2",
"react-router": "^6.6.1"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/react": "^17.0.38",
"@types/react-native": "^0.66.12",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.2.6",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"history": "^5.3.0",
"jest": "^28.1.2",
"prettier": "^2.5.1",
"react": "*",
"react-native": "^0.66.4",
"react-native-pager-view": "^5.4.9",
"react-native-screens": "^3.10.1",
"react-react": "^1.2.0",
"react-router": "^6.2.1",
"ts-jest": "^28.0.5",
"typescript": "^4.5.4"
},
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"immer": "^9.0.12",
"typedoc": "^0.22.11",
"vitest": "^0.18.0"
}
}