-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ReactNativeBoilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint .",
"test": "mocha --require test/setup-tests.js --recursive src/**/__specs__/*.spec.js",
"watch:test": "mocha --require test/setup-tests.js --recursive src/**/__specs__/*.spec.js --watch",
"cover": "nyc --reporter=lcov --reporter=text --reporter=html npm run test",
"remotedev": "remotedev --hostname=localhost --port=8000",
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"test"
]
},
"dependencies": {
"axios": "^0.9.1",
"es6-symbol": "^3.0.2",
"immutable": "^3.7.6",
"react": "^0.14.8",
"react-native": "^0.25.1",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-logger": "^2.5.2",
"redux-persist": "^2.0.1",
"redux-persist-immutable": "^1.0.5",
"redux-saga": "^0.8.2"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-preset-react-native": "^1.4.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"chai-immutable": "^1.5.3",
"enzyme": "^2.0.0",
"eslint": "^2.1.0",
"eslint-plugin-react": "^3.16.1",
"eslint-plugin-react-native": "^1.0.0",
"mocha": "^2.4.5",
"nock": "^7.2.2",
"nyc": "^5.6.0",
"react-addons-test-utils": "^0.14.8",
"react-dom": "^0.14.8",
"react-native-mock": "0.2.8",
"remote-redux-devtools": "^0.1.2",
"remotedev-server": "0.0.3",
"sinon": "^1.17.3"
}
}