-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 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
55
56
57
{
"name": "Storj",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"base-64": "^0.1.0",
"moment": "^2.21.0",
"react-native": "0.55.3",
"react-native-photo-view": "^1.5.2",
"react-native-qrcode": "^0.2.6",
"react-native-sideswipe": "^1.4.2",
"react-native-smart-barcode": "https://github.com/NikolaiYurchenko/react-native-smart-barcode/archive/ReactNative_SmartBarCode_1.0.0.7.tar.gz",
"react-navigation": "1.0.0-beta.26",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"watchman": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "22.0.4",
"babel-preset-react-native": "^4.0.0",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "22.0.4",
"jest-junit": "^3.6.0",
"mocha": "^4.1.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-native-mock": "^0.3.1",
"react-test-renderer": "16.0.0",
"redux-mock-store": "^1.4.0",
"sinon": "^4.1.4"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"transform": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/utils/testingTools/fileTransformer.js",
"^.+\\.js$": "babel-jest"
},
"testResultsProcessor": "jest-junit"
},
"rnpm": {
"assets": [
"./src/fonts/Montserrat/"
]
}
}