-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
116 lines (116 loc) · 3.55 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
{
"name": "weacast-app",
"description": "Weacast Web App and Services",
"version": "1.3.0",
"homepage": "https://github.com/weacast/weacast",
"keywords": [
"weacast"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/weacast/weacast.git"
},
"author": {
"name": "Weacast contributors",
"url": "https://github.com/weacast"
},
"contributors": [],
"bugs": {
"url": "https://github.com/weacast/weacast/issues"
},
"scripts": {
"prepublish": "npm run build",
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version --force patch && npm run publish",
"release:minor": "npm version --force minor && npm run publish",
"release:major": "npm version --force major && npm run publish",
"clean": "node build/script.clean.js",
"dev": "node build/script.dev.js",
"build": "node build/script.build.js",
"lint": "eslint --ext .js,.vue src",
"test": "npm run build && npm run lint"
},
"dependencies": {
"@feathersjs/client": "^5.0.5",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.0.0",
"chart.js": "^2.7.2",
"chroma-js": "^1.3.4",
"fastclick": "^1.0.6",
"jquery": "^3.2.1",
"leaflet": "^1.0.3",
"leaflet-basemaps": "^0.2.0",
"leaflet-canvaslayer-field": "^1.3.3",
"leaflet-filelayer": "^0.6.0",
"leaflet-fullscreen": "^1.0.2",
"leaflet-heatmap": "^1.0.0",
"leaflet-legend": "^1.0.2",
"leaflet-measure": "^2.1.7",
"leaflet-pixi-overlay": "^1.5.1",
"leaflet-timedimension": "^1.1.0",
"leaflet-velocity": "^1.2.2",
"leaflet.markercluster": "^1.0.5",
"leaflet.vectorgrid": "^1.3.0",
"lodash": "^4.17.21",
"loglevel": "^1.4.1",
"material-design-icons": "^3.0.1",
"mathjs": "^5.2.2",
"moment": "^2.29.4",
"pixi.js": "^4.8.2",
"quasar-framework": "^0.13.10",
"roboto-fontface": "^0.7.0",
"socket.io-client": "^4.4.1",
"turf-distance": "^3.0.12",
"vue": "^2.2.2",
"vue-router": "^2.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"colors": "^1.1.2",
"config": "^1.26.1",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.26.0",
"eslint": "^3.0.1",
"eslint-config-standard": "^6.2.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.17.3",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.10.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"html-webpack-plugin": "^2.8.1",
"http-proxy-middleware": "^0.17.0",
"json-loader": "^0.5.4",
"opn": "^4.0.2",
"postcss-loader": "^1.0.0",
"progress-bar-webpack-plugin": "^1.9.0",
"shelljs": "^0.8.5",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"url-loader": "^0.5.7",
"vue-loader": "11.1.4",
"vue-style-loader": "^2.0.0",
"vue-template-compiler": "^2.2.2",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.17.0",
"webpack-merge": "^4.0.0"
},
"peerDependencies": {
"weacast-api": "2.1.6"
}
}