-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.75 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.75 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
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
{
"name": "repeet",
"version": "0.0.16",
"description": "A gaming experiment with React Native",
"license": "GPL-3.0-or-later",
"author": "e-libs",
"contributors": [
{
"name": "Eric Marques",
"email": "eric@e-libs.dev",
"url": "https://github.com/emarques3"
}
],
"homepage": "https://github.com/e-libs/repeet#readme",
"repository": {
"type": "git",
"url": "https://github.com/e-libs/repeet"
},
"keywords": [
"react",
"react-native",
"game"
],
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest -i -c jest.config.js",
"lint": "eslint 'src/**/*.{ts,tsx}' --config .eslintrc.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-native-fontawesome": "^0.2.6",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.9.2",
"@react-navigation/stack": "^5.14.2",
"expo": "~40.0.0",
"expo-asset": "~8.2.1",
"expo-av": "~8.7.0",
"expo-splash-screen": "~0.8.0",
"expo-updates": "~0.4.0",
"i18next": "^19.8.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-i18next": "^11.8.5",
"react-native": "~0.63.4",
"react-native-gesture-handler": "~1.8.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.0",
"react-native-svg": "^12.1.0",
"react-native-unimodules": "~0.12.0",
"react-native-web": "~0.13.12",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"reselect": "^4.0.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"@types/react-redux": "^7.1.16",
"@types/redux-actions": "^2.6.1",
"@types/redux-persist": "^4.3.1",
"@types/styled-components-react-native": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-expo": "~8.3.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "ˆ14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"jest-expo": "~40.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "~4.0.0"
},
"jest": {
"preset": "react-native"
},
"private": true
}