-
Notifications
You must be signed in to change notification settings - Fork 988
/
package.json
86 lines (86 loc) · 2.82 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
{
"name": "kitten-tricks",
"description": "UI Kitten Demo Application",
"version": "2.4.0",
"private": true,
"license": "MIT",
"author": "akveo <[email protected]>",
"homepage": "https://github.com/akveo/kittenTricks#readme",
"repository": "git+https://github.com/akveo/kittenTricks.git",
"bugs": {
"url": "https://github.com/akveo/kittenTricks/issues"
},
"main": "./index.js",
"workspaces": {
"nohoist": [
"*",
"*/**"
]
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "npm run env -- prod && react-native start",
"start:dev": "npm run env -- dev && react-native start --reset-cache",
"env": "node ./env/set-env.js",
"build": "tsc -p ./tsconfig.json",
"build:web": "expo build:web",
"clean": "rimraf ./dist ./web-build",
"lint": "tslint -c ./tslint.json ./src/**/*.{ts,tsx}",
"changelog": "conventional-changelog -i ./CHANGELOG.md -s",
"postinstall": "jetify"
},
"dependencies": {
"@eva-design/eva": "^2.1.0",
"@eva-design/material": "^2.1.0",
"@react-native-async-storage/async-storage": "^1.13.4",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.7",
"@react-navigation/drawer": "^5.12.3",
"@react-navigation/material-top-tabs": "^5.3.13",
"@react-navigation/native": "^5.9.2",
"@react-navigation/stack": "^5.14.2",
"@ui-kitten/components": "5.1.0",
"@ui-kitten/date-fns": "5.1.0",
"@ui-kitten/eva-icons": "5.1.0",
"@ui-kitten/moment": "5.1.0",
"date-fns": "^1.30.1",
"expo": "^40.0.0",
"expo-app-loading": "^1.0.1",
"expo-constants": "~9.3.3",
"expo-splash-screen": "~0.8.1",
"expo-web-browser": "~8.6.0",
"moment": "^2.24.0",
"patch-package": "^6.2.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "~0.63.4",
"react-native-appearance": "~0.3.3",
"react-native-device-info": "^5.5.1",
"react-native-gesture-handler": "~1.8.0",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-reanimated": "~1.13.0",
"react-native-safari-view": "naoufal/react-native-safari-view#master",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.2",
"react-native-svg": "12.1.0",
"react-native-tab-view": "^2.13.0",
"react-native-web": "^0.15.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@babel/runtime": "^7.8.3",
"@expo/metro-config": "^0.1.54",
"@expo/webpack-config": "~0.12.45",
"@types/react-native": "ts4.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "8.3.0",
"conventional-changelog-cli": "^2.0.21",
"expo-cli": "^4.1.6",
"husky": "^1.1.2",
"jetifier": "^1.6.5",
"rimraf": "^2.6.2",
"tslint": "^6.0.0",
"typescript": "^4.1.5"
}
}