-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.28 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "demosso",
"version": "0.0.1",
"private": true,
"devDependencies": {
"@types/enzyme": "^3.1.9",
"@types/jest": "^22.0.0",
"@types/node": "^10.0.6",
"@types/react": "^16.0.40",
"@types/react-native": "^0.55.7",
"@types/react-native-material-ui": "^1.19.2",
"@types/react-native-vector-icons": "^4.6.0",
"@types/react-navigation": "^1.2.3",
"@types/react-redux": "^5.0.15",
"@types/react-test-renderer": "^16.0.0",
"babel-inline-import-loader": "^0.0.5",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-react-native-platform-specific-extensions": "^1.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"class-transformer": "^0.1.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"haul": "1.0.0-beta.14",
"immutable": "^3.8.2",
"jest": "^22.4.3",
"material-colors": "^1.2.5",
"mockdate": "^2.0.2",
"react-dom": "^16.3.0",
"react-native-typescript-transformer": "^1.2.3",
"react-test-renderer": "16.2.0",
"redux-mock-store": "^1.5.1",
"ts-jest": "^22.0.4",
"ts-loader": "3.5.0",
"tslib": "^1.7.1",
"tslint": "^5.9.1",
"typescript": "^3.0.1",
"yarn": "^1.5.1"
},
"scripts": {
"android": "haul start --platform android",
"ios": "haul start --platform ios",
"test": "node node_modules/jest/bin/jest.js",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/smartwallet/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'"
},
"jest": {
"setupFiles": [
"./tests/utils/setup.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|native-base|react-navigation|react-native-fabric)"
],
"globals": {
"window": true,
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/assetsTransformer.js"
},
"preset": "react-native",
"testMatch": [
"**/__tests__/**/*.[tj]s?(x)",
"**/?(*.)(spec|test).[tj]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/legacy/*"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"jolocom-lib": "^2.2.12",
"material-colors": "^1.2.5",
"object.assign": "^4.1.0",
"react": "16.2.0",
"react-native": "^0.55.3",
"react-native-indicator": "^0.7.0",
"react-native-material-textfield": "^0.12.0",
"react-native-material-ui": "^1.22.2",
"react-native-md-textinput": "^2.0.4",
"react-native-remote-svg": "^1.2.0",
"react-native-svg": "^6.3.1",
"react-native-svg-uri": "^1.2.3",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^1.5.8",
"react-navigation-redux-helpers": "^1.0.3",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"rnpm": {
"assets": [
"./src/assets/fonts"
]
}
}