forked from UCSD/campus-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.07 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.07 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
81
82
83
84
85
86
87
88
89
{
"name": "CampusMobile",
"version": "6.0.0",
"private": true,
"scripts": {
"postinstall": "npm run apply-fixes",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"insert-production-values-ci": "node scripts/replace_all.js production ci",
"insert-production-values": "node scripts/replace_all.js production",
"insert-sso-api-key": "node scripts/replace_sso.js production",
"insert-sso-api-key-ph": "node scripts/replace_sso.js placeholder",
"insert-placeholder-values": "node scripts/replace_all.js placeholder",
"apply-fixes": "node scripts/apply_fixes.js",
"generate-docs": "./node_modules/.bin/jsdoc -c jsdoc.conf.json"
},
"dependencies": {
"bugsnag-react-native": "2.9.5",
"dateformat": "3.0.3",
"html-entities": "1.2.1",
"moment": "2.21.0",
"node-forge": "0.7.2",
"prop-types": "15.6.1",
"react": "16.3.0-alpha.1",
"react-native": "0.54.4",
"react-native-animatable": "1.2.4",
"react-native-circle-checkbox": "0.1.6",
"react-native-device-info": "0.21.2",
"react-native-elevated-view": "0.0.6",
"react-native-exception-handler": "2.7.1",
"react-native-exit-app": "1.0.0",
"react-native-fcm": "14.1.3",
"react-native-google-analytics-bridge": "5.6.2",
"react-native-google-api-availability-bridge": "1.3.0",
"react-native-keyboard-aware-scroll-view": "0.5.0",
"react-native-keychain": "3.0.0-rc.3",
"react-native-maps": "https://github.com/react-community/react-native-maps.git#35855f93ef056b5b073140a37e2d4b128ec00cfd",
"react-native-permissions": "1.1.1",
"react-native-popup-menu": "0.12.3",
"react-native-restart": "0.0.6",
"react-native-simple-toast": "0.0.8",
"react-native-sortable-list": "0.0.21",
"react-native-vector-icons": "4.5.0",
"react-navigation": "1.5.8",
"react-navigation-header-buttons": "0.0.5",
"react-redux": "5.0.7",
"react-timer-mixin": "0.13.3",
"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.0",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"babel-eslint": "8.2.2",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"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.65.0",
"ink-docstrap": "1.3.2",
"jest": "22.4.3",
"jsdoc": "3.5.5",
"react-dom": "16.2.0",
"react-test-renderer": "16.2.0",
"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"
],
"setupFiles": [
"<rootDir>/tests.setup.js"
]
}
}