This repository has been archived by the owner on Apr 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 2.97 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
{
"name": "strangeluvnative",
"version": "0.0.1",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"rc-start": "npm start -- --reset-cache",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"clean-start": "npm run clean && npm run rc-start",
"fresh-install": "rm -rf package-lock.json && rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf node_modules/ && npm cache clean --force && rm -rf ios && rm -rf android && npm install react-native && react-native upgrade && npm install && react-native link",
"fresh-start": "npm run fresh-install && npm run dev",
"packager": "osascript -e 'tell application \"Terminal\" to do script \"cd '$(pwd)' && npm run rc-start\"'",
"dev": "NODE_ENV=development npm run packager && react-native run-ios",
"i": "node node_modules/react-native/local-cli/cli.js run-ios",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"a": "node node_modules/react-native/local-cli/cli.js run-android",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"link": "node node_modules/react-native/local-cli/cli.js link",
"glog": "(cd node_modules/react-native/third-party/glog-0.3.4 && ../../scripts/ios-configure-glog.sh)",
"postinstall": "npm run link && react-native upgrade",
"lint": "eslint src",
"rename": "node node_modules/react-native-rename/lib/index.js"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-root-import": "^6.1.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.20.0",
"create-react-class": "^15.6.2",
"debug": "^4.0.1",
"fs-extra": "^7.0.0",
"keymirror": "^0.1.1",
"prop-types": "^15.6.0",
"react": "^16.5.1",
"react-native": "^0.57.7",
"react-native-gesture-handler": "^1.0.10",
"react-navigation": "3.x.x",
"react-redux": "6.x.x",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"styled-components": "^4.1.2"
},
"devDependencies": {
"app-icon": "^0.6.3",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-plugin-globals": "^3.0.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-styled-components": "^1.9.2",
"eslint": "^5.6.0",
"eslint-config-hapi": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-hapi": "^4.0.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-native": "^3.3.0",
"metro-react-native-babel-preset": "^0.50.0",
"pre-commit": "^1.2.2",
"react-native-rename": "^2.2.2",
"reactotron-react-native": "^2.1.0",
"reactotron-redux": "^2.1.0"
}
}