-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.85 KB
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
{
"name": "react-unavigation-monorepo",
"private": true,
"version": "2.1.3",
"description": "React Universal Navigation monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run -w @react-native-assets/navigation build && npm run -w @cantoo/navigation build",
"build:rn": "npm run -w @react-native-assets/navigation build",
"build:react": "npm run -w @cantoo/navigation build",
"dev": "parcel example/index.html",
"dev:react": "parcel example/index.react.html",
"clean": "rimraf dist",
"prepare": "npm run build",
"release:rn": "npm run -w @react-native-assets/navigation release",
"release:react": "npm run -w @cantoo/navigation release"
},
"repository": {
"type": "git",
"url": "git@github.com: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",
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/node": "^22.7.4",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"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-standard": "^4.1.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"release-it": "^19.0.2",
"rimraf": "^5.0.0",
"typescript": "^5.6.2"
},
"alias": {
"react-native": "react-native-web"
}
}