-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "HowMany",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:ios": "react-native run-ios --simulator \"iPhone 6\"",
"test": "npm run test:unit",
"test:unit": "jest",
"test:lint": "eslint . --quiet",
"flow": "flow",
"flow:stop": "flow stop"
},
"dependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"react": "16.0.0-beta.5",
"react-native": "0.49.5",
"react-navigation": "^1.0.0-beta.15",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-core": "6.23.1",
"babel-eslint": "^7.2.2",
"babel-jest": "21.2.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.7.0",
"eslint-config-react-app": "^0.6.2",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.0",
"flow-bin": "0.53.0",
"jest": "21.2.1",
"prettier": "^1.10.2",
"react-test-renderer": "16.0.0-beta.5"
},
"jest": {
"preset": "react-native",
"moduleNameMapper": {
"^[./a-zA-Z0-9$_-]+\\.(jpg|png|gif|eot|svg|ttf|woff|woff2|mp4|webm)$": "<rootDir>/jest/FileStub.js"
}
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}