forked from opentripplanner/otp-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.23 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
{
"name": "otp-react-redux",
"description": "A library for writing modern OpenTripPlanner-compatible multimodal journey planning web applications using React and Redux",
"main": "build/index.js",
"scripts": {
"build": "mastarm build --env production",
"cover": "mastarm test -e test --coverage",
"jest": "mastarm test -e test",
"lint": "mastarm lint lib __tests__ --quiet",
"lint-docs": "documentation lint lib/**/*.js",
"prepublish": "mastarm prepublish --config configurations/prepublish",
"prestart": "yarn",
"test": "yarn run lint && yarn run lint-docs && yarn run jest",
"start": "mastarm build -e development --serve example.js"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/opentripplanner/otp-react-redux.git"
},
"author": "Conveyal",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentripplanner/otp-react-redux/issues"
},
"homepage": "https://github.com/opentripplanner/otp-react-redux#readme",
"dependencies": {
"@conveyal/geocoder-arcgis-geojson": "^0.0.2",
"@conveyal/lonlat": "^1.1.0",
"@mapbox/polyline": "^0.2.0",
"bootstrap": "^3.3.7",
"bowser": "^1.9.3",
"clone": "^2.1.0",
"connected-react-router": "^6.5.2",
"copy-to-clipboard": "^3.0.8",
"currency-formatter": "^1.4.2",
"d3-selection": "^1.3.0",
"d3-zoom": "^1.7.1",
"deep-equal": "^1.0.1",
"font-awesome": "^4.7.0",
"haversine": "^1.1.0",
"history": "^4.7.2",
"immutability-helper": "^2.1.1",
"isomorphic-fetch": "^2.2.1",
"isomorphic-mapzen-search": "^1.4.1",
"leaflet": "^1.5.1",
"leaflet.polylinemeasure": "github:ppete2/Leaflet.PolylineMeasure",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.memoize": "^4.1.2",
"moment": "^2.17.1",
"moment-timezone": "^0.5.23",
"object-hash": "^1.3.1",
"object-path": "^0.11.3",
"prop-types": "^15.6.0",
"qs": "^6.3.0",
"react": "^16.9.0",
"react-addons-shallow-compare": "^15.4.2",
"react-bootstrap": "^0.32.1",
"react-dates": "^6.0.2",
"react-dom": "^16.9.0",
"react-fontawesome": "^1.5.0",
"react-leaflet": "^2.4.0",
"react-redux": "^7.1.0",
"react-resize-detector": "^2.1.0",
"react-router": "^5.0.1",
"react-swipeable-views": "^0.13.3",
"redux": "^4.0.4",
"redux-actions": "^1.2.1",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.3.0",
"throttle-debounce": "^2.0.1",
"transitive-js": "^0.13.0",
"turf-along": "^3.0.12",
"velocity-react": "^1.3.3"
},
"devDependencies": {
"documentation": "^12.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.4.0",
"es6-math": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"mastarm": "^5.1.3",
"nock": "^9.0.9",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"redux-mock-store": "^1.5.3",
"semantic-release": "^15.13.12"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"jest": {
"globalSetup": "<rootDir>/__tests__/test-utils/global-setup.js",
"setupFilesAfterEnv": [
"<rootDir>/__tests__/test-utils/setup-env.js"
],
"testURL": "http://localhost/"
}
}