forked from zulip/zulip-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
{
"name": "ZulipMobile",
"version": "0.9.0",
"private": true,
"scripts": {
"start": "react-native start",
"reinstall": "rm -rf node_modules; yarn cache clean; yarn install",
"ios": "react-native run-ios",
"ios-min": "react-native run-ios --simulator 'iPhone 5'",
"ios-max": "react-native run-ios --simulator 'iPhone 7 Plus'",
"ios-device": "react-native run-ios --device",
"android-min": "react-native run-android",
"android-max": "react-native run-android",
"android-release": "react-native run-android --configuration 'Release'",
"test:lint": "eslint src/",
"test:flow": "flow",
"test:unit": "jest",
"test": "npm run test:lint && npm run test:unit && npm run test:flow"
},
"dependencies": {
"base-64": "^0.1.0",
"buffer": "^5.0.2",
"date-fns": "^1.27.2",
"entities": "^1.1.1",
"events": "^1.1.1",
"htmlparser2": "^3.9.2",
"immutable": "^3.8.1",
"lodash.isequal": "^4.4.0",
"lodash.throttle": "^4.1.1",
"react": "^15.4.1",
"react-native": "^0.42.0",
"react-native-device-info": "^0.10.1",
"react-native-drawer": "^2.3.0",
"react-native-fabric": "^0.4.1",
"react-native-scrollable-tab-view": "^0.7.0",
"react-native-vector-icons": "^4.0.0",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-action-buffer": "^1.0.1",
"redux-logger": "^2.7.4",
"redux-persist": "^4.0.0",
"redux-persist-transform-immutable": "^4.1.0",
"redux-thunk": "^2.1.0",
"stream": "^0.0.2",
"string.fromcodepoint": "^0.2.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "~6.8.0",
"eslint-plugin-react-native": "^2.2.1",
"eslint-plugin-spellcheck": "~0.0.6",
"flow-bin": "~0.38.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"jest-react-native": "^18.0.0",
"react-native-cli": "^2.0.1",
"react-test-renderer": "^15.4.1"
},
"jest": {
"preset": "jest-react-native"
}
}