This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.32 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
96
97
98
99
100
101
102
{
"name": "weedmatch",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"purge": "./node_modules/.bin/react-native-clean-project",
"run:ios": "react-native run-ios",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"lint": "eslint -c .eslintrc.js 'App.js' 'src/**/*.js'",
"lint:fix": "eslint -c .eslintrc.js --fix 'App.js' 'src/**/*.js'",
"prettify": "prettier --write 'App.js' 'src/**/*.js'",
"typecheck": "tsc"
},
"dependencies": {
"@ptomasroos/react-native-multi-slider": "0.0.14",
"babel-eslint": "^10.0.1",
"email-validator": "^2.0.4",
"flux": "^3.1.3",
"immutable": "^3.8.2",
"moment": "^2.22.0",
"moment-timezone": "^0.5.14",
"native-base": "^2.8.0",
"prop-types": "^15.6.1",
"react": "16.4.1",
"react-native": "^0.57.8",
"react-native-actionsheet": "^2.4.0",
"react-native-ci-tools": "^1.1.0",
"react-native-deck-swiper": "^1.5.22",
"react-native-device-info": "^0.22.6",
"react-native-fast-image": "^5.1.0",
"react-native-fbsdk": "^0.8.0",
"react-native-firebase": "^5.0.0",
"react-native-gifted-chat": "^0.4.3",
"react-native-i18n": "^2.0.12",
"react-native-image-crop-picker": "^0.20.0",
"react-native-image-slider": "^2.0.3",
"react-native-offline": "^3.14.1",
"react-native-picker": "4.3.7",
"react-native-simple-radio-button": "^2.7.1",
"react-native-spinkit": "^1.1.1",
"react-native-toast-native": "^1.2.1",
"react-native-vector-icons": "^6.0.2",
"react-native-websocket": "^1.0.2",
"react-navigation": "^2.18.2",
"rxjs": "^5.5.8",
"scheduler": "^0.10.0",
"snyk": "^1.105.0",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@types/react-native-i18n": "^2.0.0",
"@types/react-navigation": "^2.13.0",
"babel-jest": "22.4.1",
"babel-preset-react-native": "5.0.2",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.5.0",
"husky": "^1.2.0",
"jest": "22.4.2",
"lint-staged": "^8.1.0",
"metro-react-native-babel-preset": "^0.45.6",
"prettier": "^1.14.3",
"prettier-eslint": "^8.8.2",
"react-test-renderer": "16.2.0",
"schedule": "^0.5.0",
"typescript": "^3.1.3"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|react-native-router)"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"snyk": true
}