-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.49 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
{
"name": "AttendanceApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run-ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"run-android": "node node_modules/react-native/local-cli/cli.js run-android",
"bundle-ios": "lein prod-build && node --expose-gc --max_old_space_size=8192 './node_modules/react-native/local-cli/cli.js' bundle --sourcemap-output main.jsbundle.map --bundle-output ios/main.jsbundle --entry-file index.ios.js --platform ios --assets-dest ios",
"bundle-android": "lein prod-build && node --expose-gc --max_old_space_size=8192 './node_modules/react-native/local-cli/cli.js' bundle --sourcemap-output main.jsbundle.map --bundle-output android/main.jsbundle --entry-file index.android.js --platform android --assets-dest android",
"test": "jest"
},
"dependencies": {
"@babel/plugin-external-helpers": "^7.0.0",
"fsevents": "^1.2.9",
"metro": "^0.54.0",
"react": "16.8.6",
"react-native": "^0.59.8",
"react-native-calendars": "^1.112.0",
"react-native-gesture-handler": "^1.2.1",
"react-native-material-kit": "^0.5.1",
"react-native-swipe-gestures": "^1.0.3",
"react-native-typography": "^1.4.0",
"react-navigation": "3.9.1"
},
"devDependencies": {
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "0.54.0",
"react-test-renderer": "16.6.1"
},
"jest": {
"preset": "react-native"
}
}