-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.35 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.35 KB
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
{
"name": "EMBPRNFirebaseBoilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint -c .eslintrc ./app ./__tests__",
"precommit": "lint-staged",
"prettier": "prettier --config ./.prettierrc --write",
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"ios": "react-native run-ios --simulator='iPhone X'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "npm test -- --coverage",
"storybook": "storybook start -p 7007",
"clear-all-cache": "watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn install && yarn start -- --reset-cache"
},
"dependencies": {
"axios": "0.18.0",
"lodash": "4.17.11",
"moment": "2.22.2",
"query-string": "6.2.0",
"react": "16.5.0",
"react-native": "^0.58.4",
"react-native-fast-image": "5.1.1",
"react-native-fbsdk": "0.8.0",
"react-native-firebase": "5.0.0",
"react-native-permissions": "1.1.1",
"react-native-sensitive-info": "5.2.4",
"react-native-style-tachyons": "4.0.0",
"react-native-vector-icons": "6.0.1",
"react-navigation": "^2.18.0",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-logger": "3.0.6",
"redux-persist": "5.10.0",
"redux-persist-filesystem-storage": "^1.3.1",
"redux-persist-sensitive-storage": "1.0.0",
"redux-saga": "0.16.0",
"reselect": "4.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "3.4.11",
"@storybook/addon-links": "3.4.11",
"@storybook/addons": "3.4.11",
"@storybook/react-native": "3.4.11",
"@types/jest": "^23.3.9",
"@types/react": "^16.7.6",
"@types/react-native": "^0.57.9",
"@types/react-native-fbsdk": "^0.6.2",
"@types/react-native-vector-icons": "^4.6.4",
"@types/react-navigation": "^2.13.1",
"@types/react-redux": "^6.0.9",
"@types/react-test-renderer": "^16.0.3",
"@types/redux-logger": "^3.0.6",
"@types/redux-persist": "^4.3.1",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-runtime": "6.26.0",
"eslint": "5.6.1",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.24.1",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-native": "3.3.0",
"husky": "1.1.1",
"jest": "23.6.0",
"lint-staged": "7.3.0",
"metro-react-native-babel-preset": "0.48.0",
"prettier": "1.14.3",
"prop-types": "15.6.2",
"react-dom": "16.5.0",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.5.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6"
},
"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"
},
"lint-staged": {
"app/**/*.{js,jsx,json}": [
"prettier",
"git add"
],
"__tests__/**/*.{js,jsx,json}": [
"prettier",
"git add"
]
}
}