forked from stripe/stripe-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.36 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
{
"name": "stripe-react-native-example",
"description": "Example app for @stripe/stripe-react-native",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"build:server": "babel server --out-dir dist --extensions '.ts,.tsx' --ignore '**/__tests__/**' --source-maps --copy-files --delete-dir-on-start",
"start:server": "yarn build:server && node ./dist"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-native-picker/picker": "^1.15.0",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"expo": "^40.0.1",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-config": "^1.4.2",
"react-native-gesture-handler": "^1.8.0",
"react-native-reanimated": "^1.13.2",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.15.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.9.6",
"@babel/runtime": "^7.9.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/node": "^14.14.7",
"babel-plugin-module-resolver": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"metro-react-native-babel-preset": "^0.59.0",
"path": "^0.12.7",
"stripe": "^8.0.1"
}
}