-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
68
69
{
"name": "react-unavigation",
"version": "2.1.1",
"description": "React Universal Navigation",
"main": "index.js",
"scripts": {
"prepare": "tsc && babel index.tsx --extensions '.tsx' > index.js",
"web": "babel app.web.tsx --extensions '.tsx' > app.web.js && parcel index.html",
"open": "xdg-open http://localhost:1234",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Sharcoux/react-unavigation.git"
},
"keywords": [
"react",
"native",
"navigation",
"web"
],
"author": "fbillioud",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sharcoux/react-unavigation/issues"
},
"homepage": "https://github.com/Sharcoux/react-unavigation",
"peerDependencies": {
"react-native": ">=0.63.2",
"react": ">=16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.41",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"eslint-plugin-standard": "^4.1.0",
"metro-react-native-babel-preset": "^0.64.0",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^17.0.1",
"react-native": "^0.63.2",
"react-native-web": "^0.14.9",
"release-it": "^14.2.2",
"typescript": "^4.1.3"
},
"files": [
"index.js",
"index.tsx",
"index.d.ts"
],
"alias": {
"react-native": "react-native-web"
},
"types": "index.d.ts"
}