forked from microsoft/react-native-windows-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "native-module-sample-example",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"windows": "npx @react-native-community/cli run-windows",
"test:windows": "jest --config jest.config.windows.js"
},
"dependencies": {
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-windows": "0.81.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "17.0.0",
"@react-native-community/cli-platform-android": "17.0.0",
"@react-native-community/cli-platform-ios": "17.0.0",
"@react-native/babel-preset": "0.81.0",
"@react-native/metro-config": "0.81.0",
"@react-native/typescript-config": "0.81.0",
"@rnx-kit/jest-preset": "^0.1.17"
},
"engines": {
"node": ">=18"
},
"react-native-windows": {
"init-windows": {
"name": "NativeModuleSampleExample",
"namespace": "NativeModuleSampleExample",
"template": "cpp-app"
}
}
}