-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "digisquare",
"version": "0.0.1",
"private": true,
"scripts": {
"clear": "watchman watch-del-all && npm start -- --reset-cache",
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint js",
"test": "jest",
"test:watch": "jest --notify --watch --onlyChanged",
"cover": "jest --coverage"
},
"dependencies": {
"@exponent/ex-navigation": "^2.0.0",
"immutable": "^3.8.1",
"moment": "^2.12.0",
"react": "15.3.2",
"react-native": "^0.37.0",
"react-native-fabric": "^0.3.0",
"react-native-htmlview": "^0.5.0",
"react-native-onesignal": "^1.1.1",
"react-native-vector-icons": "^3.0.0",
"react-redux": "^4.4.5",
"redux": "^3.5.1",
"redux-logger": "^2.6.1",
"redux-persist": "^3.0.3",
"redux-thunk": "^2.0.1",
"remote-redux-devtools": "^0.5.3"
},
"jest": {
"preset": "jest-react-native",
"setupFiles": [
"js/Config/jest.mocks.js"
],
"collectCoverageFrom": [
"js/**/*.{js,jsx}",
"!js/**/*.mock.{js,jsx}"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-react-native": "^2.0.0",
"fetch-mock": "^5.0.0",
"jest": "^17.0.0",
"jest-react-native": "17.0.3",
"react-addons-test-utils": "15.3.2",
"react-dom": "^15.1.0",
"react-test-renderer": "^15.4.1"
}
}