-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.12 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "mintmobile",
"version": "0.0.1",
"description": "Mint mobile app.",
"engines": {
"node": "14.x",
"npm": "7.x",
"yarn": "1.x"
},
"main": "index.js",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint -c .eslintrc.js .",
"prettier": "prettier --write",
"type-check": "yarn tsc",
"setup:mint": "./scripts/setup-for-mint",
"relay": "yarn run relay-compiler --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/prathusingh/mint-mobile"
},
"keywords": [
"mint",
"react",
"react-native"
],
"homepage": "https://github.com/prathusingh/mint-mobile#readme",
"author": "Prathu Singh",
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.3",
"@react-native-google-signin/google-signin": "^7.2.2",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.1",
"@styled-system/theme-get": "^5.1.2",
"add": "^2.0.6",
"easy-peasy": "^5.0.4",
"graphql": "^16.3.0",
"react": "17.0.2",
"react-dom": "^18.0.0",
"react-native": "0.67.3",
"react-native-safe-area-context": "^4.2.4",
"react-native-screens": "^3.13.1",
"react-native-svg": "^12.3.0",
"react-native-svg-transformer": "^1.0.0",
"react-relay": "^13.2.0",
"rn-async-storage-flipper": "^0.0.10",
"styled-components": "^5.3.5",
"styled-components-react-native": "^1.0.0",
"styled-system": "^5.1.5",
"yarn": "^1.22.18"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.66.15",
"@types/react-relay": "^13.0.2",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.25",
"@types/styled-components-react-native": "^5.1.3",
"@types/styled-system": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-relay": "^13.2.0",
"eslint": "^7.14.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.3.5",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "2.5.1",
"react-native-flipper": "^0.146.1",
"react-relay-network-modern": "^6.2.1",
"react-test-renderer": "17.0.2",
"relay-compiler": "^13.2.0",
"relay-runtime": "^13.2.0",
"typescript": "^4.6.2",
"typescript-styled-plugin": "^0.18.2"
},
"resolutions": {
"@types/react": "^17"
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn prettier",
"yarn lint"
],
"*.@(json|md|js)": [
"yarn prettier"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}