-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "helloworld",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap": "node ./cli.js bootstrap",
"build": "node ./cli.js build",
"bundle": "node ./cli.js bundle ",
"install-and-run": "node ./cli.js install-and-run",
"launch": "node ./scripts/metro.js",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"react": "19.2.3",
"react-native": "1000.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native/babel-preset": "0.87.0-main",
"@react-native/core-cli-utils": "0.87.0-main",
"@react-native/eslint-config": "0.87.0-main",
"@react-native/metro-config": "0.87.0-main",
"@react-native/typescript-config": "0.87.0-main",
"@types/jest": "^29.5.14",
"commander": "^12.0.0",
"eslint": "^8.19.0",
"jest": "^29.7.0",
"listr2": "^8.2.1",
"react-test-renderer": "19.2.3",
"rxjs": "^7.8.1"
},
"engines": {
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
}
}