-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.24 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.24 KB
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
85
86
87
88
89
90
91
{
"name": "rc-mobile-base",
"version": "1.0.0",
"description": "Shared codebase for roomchecking mobile apps",
"main": "lib/index.js",
"scripts": {
"lint:fix": "npm run lint -- --fix",
"lint": "eslint lib test",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register ./test/**/*.test.js",
"test:watch": "npm test -- --watch",
"check": "npm run lint && npm run test",
"sandbox:prepare": "rimraf sandbox/lib && cp -r lib sandbox",
"sandbox:ios": "npm run sandbox:prepare && cd sandbox && react-native run-ios",
"sandbox:android": "npm run sandbox:prepare && cd sandbox && react-native run-ios",
"sandbox": "npm run sandbox:ios"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"check-es3-syntax-cli": "^0.1.1",
"cross-env": "^1.0.7",
"enzyme": "^2.5.1",
"eslint": "^1.10.3",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^3.16.1",
"gitbook-cli": "^2.3.0",
"glob": "^6.0.4",
"lodash": "^4.17.0",
"mocha": "^3.1.2",
"moment": "^2.15.1",
"ramda": "^0.22.1",
"react-native": "^0.35.0",
"react-native-fetch-blob": "^0.9.6",
"react-native-i18n": "^0.1.1",
"react-native-immersive": "0.0.4",
"redux-persist": "^4.0.0-alpha6",
"redux-saga": "^0.12.0",
"reduxsauce": "^0.2.0",
"reselect": "^2.5.4",
"rimraf": "^2.3.4",
"seamless-immutable": "^6.3.0"
},
"files": [
"lib",
"translations",
"android",
"ios",
"react-native-pusher.js",
"sagas.js",
"utils.js",
"actions.js",
"constants.js",
"reducers.js",
"selectors.js"
],
"keywords": [
"react-native",
"ios",
"android"
]
}