-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "Flic2Example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"dev": "npm run reverse-tcp && npm start",
"reverse-tcp": "adb reverse tcp:8081 tcp:8081",
"postinstall": "npx jetify",
"reset-cache": "watchman watch-del-all; npm start -- --reset-cache;",
"reset-cache-android": "npm run reverse-tcp; npm run reset-cache;"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-native-fontawesome": "^0.2.0",
"react": "^16.12.0",
"react-native": "0.63.2",
"react-native-animatable": "^1.3.3",
"react-native-flic2": "0.3.7",
"react-native-permissions": "2.1.5",
"react-native-prompt-android": "^1.1.0",
"react-native-root-toast": "^3.2.0",
"react-native-svg": "^12.1.0"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/runtime": "7.7.7",
"@react-native-community/eslint-config": "0.0.5",
"babel-jest": "24.9.0",
"eslint": "6.8.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.4",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
}
}