-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.44 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
{
"name": "textile-notes",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"tsc": "tsc -p . --noEmit",
"lint": "tslint -c tslint.json --project .",
"test": "jest",
"device:ios": "react-native run-ios",
"log:device:ios": "react-native log-ios",
"pow-ios": "ttab yarn start; ttab yarn device:ios; yarn log:device:ios;"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@textile/react-native-sdk": "3.0.12",
"buffer": "^5.2.1",
"react": "^16.6.3",
"react-native": "^0.59.9",
"react-native-background-fetch": "^2.4.3",
"react-native-background-timer": "2.1.0-alpha.6",
"react-native-config": "^0.11.7",
"react-native-drawer": "^2.5.1",
"react-native-fs": "^2.11.17",
"react-native-responsive-fontsize": "^0.1.8",
"react-native-shake": "^3.3.0",
"react-native-typography": "^1.4.0",
"react-navigation": "^3.2.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.1",
"typesafe-actions": "4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^24.0.0",
"@types/react": "^16.8.3",
"@types/react-native": "^0.57.36",
"@types/react-native-background-timer": "^2.0.0",
"@types/react-native-fs": "^2.8.2",
"@types/react-navigation": "^3.0.2",
"@types/react-redux": "^6.0.9",
"@types/react-test-renderer": "^16.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.48.0",
"react-dom": "^16.5.2",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "16.6.3",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}