forked from autyzm-pg/friendly-plans-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.87 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
{
"name": "friendly-plans",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"prettier:fix": "prettier --write \"**/*.{js,ts,tsx}\"",
"prettier:check": "prettier --list-different \"**/*.{js,ts,tsx}\"",
"test": "jest --env=jsdom --updateSnapshot --silent",
"test:ci": "jest --env=jsdom --silent --coverage --runInBand",
"test:coverage": "yarn test --coverage",
"typescript:check": "tsc --noEmit",
"pre-commit": "lint-staged",
"postinstall": "yarn jetify"
},
"dependencies": {
"@react-native-community/slider": "^3.0.3",
"@types/lodash.every": "^4.6.6",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.noop": "^3.0.6",
"@types/lodash.sortby": "^4.7.6",
"formik": "^1.5.7",
"i18next": "^18.0.0",
"lodash.every": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.noop": "^3.0.1",
"lodash.sortby": "^4.7.0",
"react": "^16.11.0",
"react-i18next": "^11.0.0",
"react-native": "^0.61.5",
"react-native-config": "^0.12.0",
"react-native-draggable-flatlist": "^2.2.0",
"react-native-elements": "1.2.0",
"react-native-fast-image": "^7.0.2",
"react-native-firebase": "^5.5.6",
"react-native-floating-action": "^1.19.1",
"react-native-gesture-handler": "^1.5.6",
"react-native-image-crop-picker": "^0.35.1",
"react-native-localize": "^1.3.1",
"react-native-reanimated": "^1.7.0",
"react-native-sound": "^0.11.0",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^9.13.3",
"react-native-vector-icons": "^7.1.0",
"react-navigation": "^3.13.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-typescript": "^7.6.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.20",
"@types/lodash": "^4.14.144",
"@types/react": "^16.9.11",
"@types/react-native": "^0.61.23",
"@types/react-navigation": "^3.0.7",
"@types/yup": "^0.26.15",
"babel-jest": "^24.9.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.1",
"lint-staged": "^9.4.2",
"metro-react-native-babel-preset": "^0.56.3",
"prettier": "^1.18.2",
"react-art": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint",
"git add"
]
}
}