-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "@rnw-scripts/sample-custom-component",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "rnw-scripts buildWithCodegetNativeComponents",
"lint": "rnw-scripts lint",
"lint:fix": "rnw-scripts lint:fix"
},
"main": "lib-commonjs/index.js",
"types": "lib-commonjs/index.d.ts",
"codegenConfig": {
"name": "SampleCustomComponent",
"type": "all",
"jsSrcsDir": "src",
"windows": {
"generators": "componentsWindows",
"namespace": "winrt::SampleCustomComponent::Codegen",
"outputDirectory": "windows/SampleCustomComponent/codegen"
}
},
"dependencies": {
"@types/react": "^19.2.0",
"minimatch": "^10.0.3",
"react": "^19.2.0",
"react-native": "0.83.0-rc.5",
"react-native-windows": "0.83.0-preview.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/generator": "^7.25.0",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.20.0",
"@react-native-community/cli": "20.0.0",
"@react-native/metro-config": "0.83.0-rc.5",
"@rnw-scripts/babel-node-config": "2.3.3",
"@rnw-scripts/babel-react-native-config": "0.0.0",
"@rnw-scripts/eslint-config": "1.2.38",
"@rnw-scripts/just-task": "2.3.58",
"@rnw-scripts/metro-dev-config": "0.0.0",
"@rnw-scripts/ts-config": "2.0.6",
"@rnx-kit/jest-preset": "^0.3.1",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"glob": "^7.1.6",
"just-scripts": "^1.3.3",
"prettier": "2.8.8",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}