-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.86 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
96
{
"name": "timelockr",
"license": "UNLICENSED",
"description": "This is an app that controls a smart lock. The lock denies user access for period of time specified by user",
"version": "0.0.1",
"author": "John Hillert <john.hillert@gmail.com> (https://github.com/jehillert)",
"homepage": "https://github.com/jehillert/modicum-timelockr-app#readme",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/jehillert/modicum-timelockr-app.git"
},
"bugs": {
"url": "https://github.com/jehillert/modicum-timelockr-app/issues"
},
"private": true,
"scripts": {
"start": "react-native start",
"start-rnd": "open 'rndebugger://set-debugger-loc?host=localhost&port=8081' && npm start",
"start-rnd:clean-cache": "open 'rndebugger://set-debugger-loc?host=localhost&port=8081' && npm start -- --reset-cache",
"android": "react-native run-android",
"clean-baber-loader-cache": "rm -rf node_modules/.cache/babel-loader/*",
"clean": "./clean.sh",
"mirror-device": "./mirror-device.sh"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.5",
"@react-native-community/netinfo": "^6.0.0",
"@react-navigation/drawer": "^6.1.1",
"@react-navigation/stack": "^6.0.4",
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.21.1",
"babel-plugin-module-resolver": "^4.1.0",
"react": "17.0.2",
"react-native": "0.64.2",
"react-native-appearance": "^0.3.4",
"react-native-date-picker": "^3.3.2",
"react-native-device-info": "^8.1.7",
"react-native-dotenv": "^3.1.1",
"react-native-flipper": "^0.102.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-paper": "^4.9.2",
"react-native-permissions": "^3.0.5",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "^3.5.0",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-native-vector-icons": "^8.1.0",
"react-navigation": "^4.4.4",
"react-redux": "^7.2.4",
"redux-flipper": "^2.0.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.14.8",
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"@types/react": "^17.0.16",
"@types/react-native": "^0.64.12",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-native-vector-icons": "^6.4.8",
"@types/react-redux": "^7.1.18",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-saga": "^0.10.5",
"@types/styled-components": "^5.1.12",
"@types/styled-components-react-native": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-jest": "^27.0.6",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.3.2",
"react-test-renderer": "17.0.2",
"reactotron-react-native": "^5.0.0",
"reactotron-redux": "^3.1.3",
"typescript": "^4.3.5",
"typescript-plugin-styled-components": "^2.0.0"
},
"jest": {
"preset": "react-native"
}
}