-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.37 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
{
"name": "StarterKit",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint --ext .ts,.tsx app/"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.6.0",
"@types/i18n-js": "^3.0.1",
"@types/micromatch": "^3.1.0",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.5",
"lint-staged": "9.2.5",
"micromatch": "^4.0.2",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"react": "16.8.6",
"react-native": "0.60.5",
"react-native-color-picker": "^0.5.2",
"react-native-config": "github:luggit/react-native-config#1eb6ac0",
"react-native-datepicker": "^1.7.2",
"react-native-gesture-handler": "1.4.1",
"react-native-linear-gradient": "^2.5.6",
"react-native-router-flux": "4.0.6",
"react-native-simple-radio-button": "^2.7.4",
"react-native-textarea": "^1.0.4",
"react-navigation": "4.0.5",
"react-navigation-stack": "2.8.2",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.14",
"@types/react-native-datepicker": "^1.7.0",
"@types/react-test-renderer": "^16.9.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"i18n-js": "3.3.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"react-native-localize": "1.2.0",
"react-native-testing-library": "^1.11.1",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.8.6",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc --noEmit --skipLibCheck",
"pre-push": "yarn test"
}
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}