-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.87 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
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
90
91
92
93
94
95
{
"name": "ambient_power_native",
"version": "1.3.0",
"private": true,
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"extends": "universe/native",
"parserOptions": {
"es6": true
},
"env": {
"es6": true
}
},
"scripts": {
"start": "react-native start",
"ios": "react-native run-ios",
"ios-iPhone14": "react-native run-ios --simulator 'iPhone 14 Pro'",
"android": "react-native run-android --active-arch-only",
"react-devtools": "react-devtools",
"start-reset-cache": "react-native start --reset-cache",
"test": "jest",
"lint": "eslint .",
"full-project-clean": "react-native-clean-project"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-picker/picker": "^2.4.8",
"@react-navigation/native": "^6.1.1",
"@react-navigation/stack": "^6.3.9",
"@reduxjs/toolkit": "^1.9.1",
"react": "18.0.0",
"react-native": "0.69.0",
"react-native-countdown-circle-timer": "*",
"react-native-gesture-handler": "^2.14.0",
"react-native-pager-view": "^6.2.3",
"react-native-picky": "^0.4.0",
"react-native-reanimated": "~2.9.1",
"react-native-responsive-fontsize": "^0.5.1",
"react-native-safe-area-context": "~4.4.1",
"react-native-screens": "^3.27.0",
"react-native-simple-time-picker": "^1.3.11",
"react-native-sound": "^0.11.2",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "12.3.0",
"react-native-vector-icons": "^9.2.0",
"react-native-video": "^5.2.1",
"react-redux": "^8.0.5",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^10.1.1",
"@tsconfig/react-native": "^2.0.2",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-native-video": "^5.0.14",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.31.11",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.70.3",
"react-test-renderer": "18.0.0",
"redux-mock-store": "^1.5.4",
"typescript": "^4.6.3"
},
"overrides": {
"react-native-simple-time-picker": {
"react": "18.0.0",
"@react-stately/utils": {
"react": "18.0.0"
},
"react-test-renderer": "18.0.0"
}
},
"engines": {
"node": ">=16"
}
}