-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
executable file
·50 lines (50 loc) · 1.58 KB
/
package.json
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
{
"name": "example",
"version": "1.8.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"windows": "react-native run-windows",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"bundle:ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios",
"postinstall": "npm run bundle:ios"
},
"dependencies": {
"react": "18.3.1",
"react-native": "0.75.4",
"react-native-windows": "0.75.5",
"@react-native-community/checkbox": "^0.5.16",
"react-native-canvas": "^0.1.39",
"react-native-webview": "^13.6.3",
"react-native-star-io10": "file:.."
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.75.4",
"@react-native/eslint-config": "0.75.4",
"@react-native/metro-config": "0.75.4",
"@react-native/typescript-config": "0.75.4",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4",
"metro-config": "^0.80.12",
"@types/jest": "^29.2.1",
"@types/react-native-canvas": "^0.1.10",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"metro-react-native-babel-preset": "0.76.8"
},
"engines": {
"node": ">=18"
}
}