-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 778 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 778 Bytes
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
{
"private": true,
"name": "expo-sdk-payment-example",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"format": "prettier --write .",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios --device"
},
"dependencies": {
"@lyracom/react-native-sdk-payment-module": "^3.1.2",
"expo": "~52.0.42",
"expo-status-bar": "~2.0.1",
"react": "18.3.1",
"react-native": "~0.77.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/react": "~18.3.12",
"prettier": "^3.6.2",
"typescript": "^5.3.3"
},
"expo": {
"install": {
"exclude": [
"react-native@~0.76.8"
]
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
}
}