-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "RNBase",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "standard --verbose | snazzy",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"newclear": "watchman watch-del-all && rm -rf node_modules/ && npm cache clean && npm i",
"test": "mocha --opts Tests/mocha.opts Tests/ --recursive",
"test:client": "mocha --opts Tests/mocha.opts Tests/Services/HttpClient*.js --recursive"
},
"dependencies": {
"js-money": "^0.5.1",
"lodash": "^4.0.0",
"querystringify": "0.0.3",
"ramda": "^0.19.1",
"react": "^0.14.5",
"react-native": "^0.22.2",
"react-native-gifted-form": "[email protected]:markrickert/react-native-gifted-form.git#my-branch",
"react-native-linear-gradient": "^1.5.3",
"react-native-modalbox": "^1.3.1",
"react-native-picker": "^2.0.1",
"react-native-swipeout": "[email protected]:dancormier/react-native-swipeout.git#head",
"react-native-vector-icons": "^1.3.3",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-logger": "^2.4.0",
"redux-persist": "^2.0.1",
"redux-saga": "^0.9.3",
"seamless-immutable": "^5.0.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.3",
"deep-freeze": "0.0.1",
"mocha": "^2.4.5",
"snazzy": "^3.0.0",
"standard": "^6.0.7"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData"
]
}
}