This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 3.08 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
{
"name": "totx",
"version": "1.0.0",
"description": "Toronto Transit Explorer",
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "^0.0.29",
"@types/chai-http": "^0.0.30",
"@types/classnames": "0.0.32",
"@types/compression": "^0.0.33",
"@types/cookie": "^0.3.0",
"@types/d3-scale": "^1.0.4",
"@types/express": "^4.0.35",
"@types/geojson": "^7946.0.2",
"@types/google.analytics": "^0.0.39",
"@types/googlemaps": "^3.30.8",
"@types/js-cookie": "^2.0.28",
"@types/json-stable-stringify": "^1.0.29",
"@types/lodash": "^4.14.104",
"@types/mapbox-gl": "^0.45.2",
"@types/mocha": "^2.2.39",
"@types/prop-types": "^15.5.1",
"@types/react": "^16.3.12",
"@types/react-dom": "^16.0.5",
"@types/react-slick": "^0.23.0",
"@types/request": "^0.0.45",
"@types/sprintf-js": "0.0.27",
"@types/supercluster": "^3.0.2",
"@types/tmp": "^0.0.32",
"@types/underscore": "^1.7.36",
"@types/ws": "^3.0.2",
"awesome-typescript-loader": "^3.0.0-beta.18",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "4.3.0",
"chai-roughly": "^1.0.0",
"classnames": "^2.2.5",
"commander": "^2.15.1",
"compression": "^1.6.2",
"connect-gzip-static": "^1.0.0",
"cookie": "^0.3.1",
"copy-webpack-plugin": "^4.5.1",
"d3-scale": "^1.0.3",
"express": "^4.14.1",
"fs": "^0.0.1-security",
"geojson-utils": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"js-cookie": "^2.1.3",
"json-loader": "^0.5.7",
"json-stable-stringify": "^1.0.1",
"license-webpack-plugin": "^1.1.1",
"lodash": "^4.17.19",
"mapbox-gl": "^0.47.0",
"morgan": "^1.8.0",
"net": "^1.0.2",
"nodemon": "^1.15.1",
"prop-types": "^15.5.8",
"react": "^16.3.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.4.2",
"react-mapbox-gl": "^3.8.0",
"react-measure": "^1.4.7",
"react-slick": "^0.23.1",
"request": "^2.85.0",
"slick-carousel": "^1.8.1",
"source-map-loader": "^0.1.5",
"sprintf-js": "^1.0.3",
"tls": "^0.0.1",
"tmp": "^0.0.31",
"topojson-client": "^2.1.0",
"ts-node": "^5.0.1",
"typescript": "^2.6.2",
"underscore": "^1.8.3",
"webpack": "^1.13.3",
"webpack-sources": "^1.1.0"
},
"devDependencies": {
"mocha": "6.2.0",
"prettier": "^1.4.4",
"tslint": "^5.9.1"
},
"scripts": {
"develop": "./scripts/develop.sh",
"prettier": "./scripts/prettier.sh --write",
"prettier-test": "./scripts/prettier.sh --list-different",
"lint": "tslint --project tsconfig.json",
"serve": "ts-node packages/transit/server/server.ts",
"tsc": "tsc",
"webpack": "webpack --config packages/transit/webpack.config.js",
"test": "mocha --require ts-node/register \"**/*_test.ts\"",
"circleci": "yarn prettier-test && yarn lint && yarn tsc && yarn test && yarn webpack"
},
"author": "Sidewalk Engineers <eng@sidewalklabs.com>",
"resolutions": {
"mapbox-gl/gray-matter/js-yaml": "3.13.1"
}
}