-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.17 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
{
"name": "MyAwesomeProject",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint src --max-warnings=0",
"test:watch": "yarn test --watch",
"generate": "yarn plop --plopfile generators/plopfile.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.3",
"@react-navigation/native": "^5.9.2",
"axios": "^0.21.1",
"native-base": "^2.15.2",
"react": "16.13.1",
"react-native": "0.64.1",
"react-native-vector-icons": "^8.0.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.50",
"@types/react-native": "^0.63.23",
"@types/react-test-renderer": "^16.9.3",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.4.0",
"metro-react-native-babel-preset": "^0.63.0",
"plop": "^2.7.4",
"prettier": "^2.1.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.13.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"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"
}
}