-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "appscheduler",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"tsc:build": "tsc",
"tsc:build:watch": "tsc -w",
"dev:android": "npm-run-all -p start tsc:build:watch android",
"dev:ios": "npm-run-all -p start tsc:build:watch ios"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"dependencies": {
"@types/react-native-vector-icons": "4.6.4",
"cron-parser": "2.6.0",
"date-fns": "1.29.0",
"md5-hex": "2.0.0",
"react": "16.5.0",
"react-native": "0.57.2",
"react-native-cli": "2.0.1",
"react-native-firebase": "5.1.1",
"react-native-tab-view": "1.0.2",
"react-native-vector-icons": "6.1.0",
"react-navigation": "2.16.0",
"styled-components": "4.1.3"
},
"devDependencies": {
"@types/date-fns": "2.6.0",
"@types/react": "16.4.14",
"@types/react-native": "0.56.24",
"@types/react-navigation": "2.0.22",
"@types/styled-components": "4.1.4",
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.48.0",
"npm-run-all": "4.1.3",
"prettier": "1.14.3",
"react-test-renderer": "16.5.0",
"tslint": "5.11.0",
"typescript": "3.0.3"
},
"jest": {
"preset": "react-native"
}
}