-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
63
{
"name": "example",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"android": "react-native run-android",
"compile": "tsc",
"deps": "rnx-align-deps",
"deps:fix": "rnx-align-deps --write",
"ios": "react-native run-ios",
"start": "react-native rnx-start",
"start:reset": "yarn start --reset-cache",
"web:build": "react-native bundle --config metro.config.web.cjs --dev false --entry-file index.js --bundle-output dist/index.bundle.js",
"web:start": "yarn serve"
},
"installConfig": {
"hoistingLimits": "workspaces"
},
"packageManager": "yarn@3.6.3",
"dependencies": {
"dedent": "^1.6.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-is": "19.1.0",
"react-native": "0.80.0",
"react-native-spotlight-tour": "workspace:^",
"react-native-svg": "^15.12.0",
"react-native-svg-web": "^1.0.9",
"react-native-web": "^0.20.0",
"styled-components": "^6.1.19"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/runtime": "^7.27.6",
"@react-native-community/cli": "^18.0.0",
"@react-native-community/cli-platform-android": "^18.0.0",
"@react-native-community/cli-platform-ios": "^18.0.0",
"@react-native/babel-preset": "^0.80.0",
"@react-native/metro-config": "^0.80.0",
"@rnx-kit/align-deps": "^3.0.7",
"@rnx-kit/babel-preset-metro-react-native": "^2.0.0",
"@rnx-kit/cli": "^0.18.9",
"@rnx-kit/metro-config": "^2.1.0",
"@rnx-kit/metro-resolver-symlinks": "^0.2.5",
"@styled/typescript-styled-plugin": "^1.0.1",
"@types/react": "^19.1.8",
"metro-config": "^0.82.4",
"serve": "^14.2.4",
"typescript": "^5.8.3"
},
"rnx-kit": {
"kitType": "app",
"bundle": {
"treeShake": true,
"plugins": [
"@rnx-kit/metro-plugin-cyclic-dependencies-detector"
]
}
}
}