-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 2.07 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
{
"name": "RNBoilerplate",
"version": "0.10.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios-open": "open ios/*.xcodeproj",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"link": "node node_modules/react-native/local-cli/cli.js link",
"lint": "eslint src test *.js",
"test": "mocha --recursive --compilers js:babel-core/register -r test/setup",
"cover": "nyc npm test",
"remotedev": "remotedev-debugger --injectserver",
"postinstall": "npm run link && npm run remotedev && rndebugger-open"
},
"remotedev": {
"hostname": "localhost",
"port": 5678
},
"dependencies": {
"immutable": "^3.7.6",
"lodash": "^4.3.0",
"react": "~15.4.1",
"react-native": "0.38.0",
"react-native-app-intro": "^1.1.5",
"react-native-code-push": "^1.16.1-beta",
"react-native-parallax-view": "^2.0.6",
"react-native-router-flux": "^3.37.0",
"react-native-swiper": "^1.5.4",
"react-native-vector-icons": "^3.0.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.5.0",
"babel-preset-react-native": "^1.4.0",
"chai": "^3.5.0",
"enzyme": "^2.0.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"immutable-devtools": "0.0.7",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"node-fetch": "^1.3.3",
"nyc": "^8.1.0",
"proxyquire": "^1.7.4",
"react-addons-test-utils": "~15.4.1",
"react-dom": "~15.4.1",
"react-native-debugger-open": "^0.3.0",
"react-native-mock": "^0.2.3",
"remote-redux-devtools": "^0.5.4",
"remote-redux-devtools-on-debugger": "^0.7.0",
"sinon": "^1.17.2"
}
}