forked from UCSD/campus-mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.65 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "CampusMobile",
"version": "6.3.0",
"description": "React Native App for Campus",
"keywords": [
"react native",
"mobile",
"app",
"ios",
"android",
"campus",
"university",
"education"
],
"homepage": "https://github.com/UCSD/campus-mobile",
"bugs": "https://github.com/UCSD/campus-mobile/issues",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"eslint": "lint-staged",
"eslint-all": "./node_modules/.bin/eslint . --max-warnings=0",
"campus-prod-ci": "node scripts/replace-all prod ci",
"campus-qa-ci": "node scripts/replace-all qa ci",
"generate-docs": "./node_modules/.bin/jsdoc -c jsdoc.conf.json"
},
"dependencies": {
"@babel/runtime": "7.3.1",
"bugsnag-react-native": "2.9.5",
"dateformat": "3.0.3",
"html-entities": "1.2.1",
"moment": "2.24.0",
"node-forge": "0.7.2",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-animatable": "1.3.1",
"react-native-barcode-builder": "1.0.5",
"react-native-circle-checkbox": "0.1.6",
"react-native-circular-progress": "1.0.1",
"react-native-datepicker": "1.7.2",
"react-native-device-info": "0.21.2",
"react-native-exception-handler": "2.7.1",
"react-native-exit-app": "1.0.0",
"react-native-firebase": "4.3.7",
"react-native-gesture-handler": "1.0.15",
"react-native-google-analytics-bridge": "5.6.2",
"react-native-google-api-availability-bridge": "1.3.0",
"react-native-hyperlink": "0.0.14",
"react-native-keyboard-aware-scroll-view": "0.5.0",
"react-native-keychain": "3.0.0-rc.3",
"react-native-maps": "0.23.0",
"react-native-modal": "9.0.0",
"react-native-permissions": "1.1.1",
"react-native-popup-menu": "0.15.0",
"react-native-progress": "3.6.0",
"react-native-restart": "0.0.7",
"react-native-simple-toast": "0.0.8",
"react-native-sortable-list": "0.0.22",
"react-native-svg": "6.5.2",
"react-native-system-setting": "1.7.2",
"react-native-vector-icons": "4.5.0",
"react-navigation": "3.0.9",
"react-navigation-header-buttons": "0.0.5",
"react-redux": "5.0.7",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-persist": "4.10.2",
"redux-persist-migrate": "5.0.0",
"redux-persist-transform-filter": "0.0.16",
"redux-saga": "0.16.1",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.9.1",
"enzyme-to-json": "3.3.5",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"flow-bin": "0.92.1",
"husky": "1.3.1",
"ink-docstrap": "1.3.2",
"jest": "24.1.0",
"jsdoc": "3.5.5",
"lint-staged": "8.1.3",
"metro-react-native-babel-preset": "0.51.1",
"react-dom": "16.8.1",
"react-test-renderer": "16.8.1",
"redux-immutable-state-invariant": "2.1.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|mobx-react)"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"setupFiles": [
"<rootDir>/tests.setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}