This repository has been archived by the owner on Apr 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "AppPlayground",
"version": "0.0.1",
"private": true,
"author": "ZX Ventures LLC",
"license": "MIT",
"scripts": {
"android": "ANDROID_HOME=/Users/$(whoami)/Library/Android/sdk react-native run-android && yarn run build:strings",
"build:strings": "node ./scripts/buildLocalizedStrings",
"clean": "rm -rf node_modules && watchman watch-del-all",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"ios": "react-native run-ios && yarn run build:strings",
"install": "flow-typed update",
"lint": "eslint src __tests__",
"lint:fix": "eslint --fix src __tests__",
"start": "concurrently \"react-native run-ios\" \"ANDROID_HOME=/Users/$(whoami)/Library/Android/sdk react-native run-android\" && yarn run build:strings",
"test": "npm run lint && npm run test:jest-no-cache",
"test:jest": "jest --coverage",
"test:jest-no-cache": "jest --coverage --no-cache",
"test:no-cache": "npm run lint && npm run test:jest-no-cache",
"test:update-snapshots": "jest --coverage --no-cache -u"
},
"dependencies": {
"apollo-client": "^0.5.25",
"graphql": "^0.6.1",
"graphql-tag": "^0.1.7",
"graphql-tools": "^0.6.2",
"react": "~15.4.0-rc.4",
"react-apollo": "^0.7.2",
"react-intl": "^2.2.3",
"react-native": "0.42.0-rc.3",
"react-native-locale": "^0.0.14",
"react-native-vector-icons": "^4.0.0",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-observable": "^0.12.2",
"redux-persist": "^4.0.1",
"rxjs": "^5.0.0-rc.5",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.1.0",
"babel-jest": "18.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-react-native": "1.9.1",
"concurrently": "^3.1.0",
"eslint": "^3.13.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-react-native": "^2.2.0",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "0.37.0",
"flow-typed": "^2.0.0",
"jest": "18.1.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "15.4.1",
"redux-mock-store": "^1.2.1"
},
"jest": {
"preset": "react-native",
"coveragePathIgnorePatterns": [],
"transformIgnorePatterns": [
"<rootDir>/node_modules(?!\\/(react-native|redux-request-state|redux-data-fetching|react-clone-referenced-element))/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/__setup__.js"
],
"modulePaths": [
"src",
"/node_modules/"
],
"setupFiles": [
"./__tests__/__setup__.js"
]
}
}