-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.67 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
{
"name": "tApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"tsc": "tsc -p . --noEmit",
"lint": "eslint --fix --ext .mjs,.js,.jsx,.ts,.tsx .",
"test": "jest"
},
"dependencies": {
"@textile/react-native-sdk": "3.0.12",
"buffer": "^5.2.1",
"react": "^16.6.3",
"react-native": "0.58.6",
"react-native-background-fetch": "^2.4.3",
"react-native-background-timer": "2.1.0-alpha.6",
"react-native-fs": "^2.11.17",
"react-native-gesture-handler": "v1.3.0",
"react-native-responsive-fontsize": "^0.1.8",
"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": "^3.0.0"
},
"devDependencies": {
"@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",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-bevry": "^1.2.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.48.0",
"prettier": "^1.17.0",
"react-dom": "^16.5.2",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "16.6.3",
"ts-jest": "^23.10.5",
"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"
},
"eslintConfig": {
"extends": [
"bevry"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}