forked from monostere0/SoundsCrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 956 Bytes
/
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
{
"name": "SoundsCrate",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint app/**/*.js",
"flow": "flow check"
},
"dependencies": {
"disconnect": "^1.1.0",
"query-string": "^4.3.2",
"react": "16.2.0",
"react-native": "0.53.0",
"react-native-dotenv": "^0.1.1",
"react-navigation": "1.0.0-beta.15"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "17.0.2",
"babel-preset-react-native": "1.9.0",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.2",
"flow-bin": "^0.63.0",
"jest": "^22.2.0",
"react-devtools": "^2.5.0",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native",
"collectCoverageFrom": [
"app/**/*.js"
]
}
}