-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "Todo",
"version": "0.0.1",
"description": "React Native and Flux Todo App.",
"keywords": [
"react-native",
"ios",
"android",
"mobile",
"todo",
"list"
],
"repository": {
"type": "git",
"url": "https://github.com/ignivalancy/Todo-ReactNative.git"
},
"author": "Lancy Goyal",
"license": "",
"bugs": {
"url": "https://github.com/ignivalancy/Todo-ReactNative/issues"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build-ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.ios.js --bundle-output iOS/main.jsbundle --platform 'ios' --assets-dest ./ --dev false --reset-cache",
"build-android": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.android.js --bundle-output iOS/main.jsbundle --platform 'android' --assets-dest ./ --dev false --reset-cache",
"android-setup-port": "adb reverse tcp:8081 tcp:8080",
"test": "jest"
},
"private": false,
"dependencies": {
"events": "^1.1.1",
"flux": "^3.1.2",
"react": "15.4.2",
"react-native": "0.41.0",
"react-native-loading-spinner-overlay": "^0.4.2",
"react-native-vector-icons": "^4.0.0"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native"
}
}