-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.69 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "rnew",
"version": "0.0.4",
"private": true,
"author": "Nestoro",
"license": "MIT",
"scripts": {
"start": "react-native start",
"test": "jest",
"test:web": "react-scripts test --env=jsdom",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ios": "react-native run-ios",
"ios:release": "react-native bundle --platform=ios",
"android": "react-native run-android",
"android:clean": "cd android && ./gradlew clean",
"android:release": "cd android && ./gradlew assembleRelease",
"preweb:release": "npm run icon-gen",
"preweb:release:serve": "npm run web:release",
"web": "react-scripts start",
"web:release": "react-scripts build",
"web:release:serve": "serve -s build",
"eject": "react-scripts eject",
"icon-gen": "scripts\\icon-gen.sh",
"install": "node scripts/install.js",
"clear": "rm -fr $TMPDIR\\react-* && rm -rf $TMPDIR\\metro-* && rm -rf $TMPDIR\\haste-*"
},
"dependencies": {
"react": "18.0.0",
"react-art": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.1",
"react-native-web": "^0.18.4",
"react-router-dom": "^6.3.0",
"react-router-native": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@types/babel__core": "^7.1.17",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.0",
"@types/react-native": "^0.69.1",
"@types/react-router-dom": "^5.3.2",
"@types/react-router-native": "^5.1.2",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-eslint": "10.1.0",
"babel-jest": "^26.6.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-react-native-web": "^0.17.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"icon-gen": "^3.0.0",
"jest": "26.6.0",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.5.1",
"react-scripts": "^5.0.0",
"react-test-renderer": "18.0.0",
"rnpm-plugin-dom": "^0.5.0",
"rnpm-plugin-windows": "^0.2.3",
"serve": "^13.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.5.4"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-router-native)/"
],
"collectCoverageFrom": [
"src/**"
],
"coveragePathIgnorePatterns": [
"src/index.*",
"src/utilities/routing/index.*"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}