-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "defundDAPL",
"version": "1.1.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --verbose",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "eslint src/*.js",
"build": "babel src -d lib"
},
"dependencies": {
"babel-cli": "^6.24.0",
"react": "~15.4.0-rc.4",
"react-native": "0.40.0",
"react-native-code-push": "^1.17.3-beta",
"react-native-communications": "^2.2.1",
"react-native-share": "^1.0.19",
"react-native-vector-icons": "^4.0.0",
"react-style-proptype": "^1.4.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"es6-promise": "^4.2.8",
"eslint": "^5.3",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-flowtype": "3.9.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-native": "^3.7.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^18.1.0",
"react-test-renderer": "~15.4.0-rc.4",
"xmlhttprequest": "^1.8.0"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"node_modules",
"__tests__/env.js"
],
"setupFiles": [
"./__tests__/env.js"
]
}
}