package.json 1.75 KB
Newer Older
Patrick's avatar
neu  
Patrick committed
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
{
  "name": "virtualcityMAP-plugin",
  "version": "3.4.0",
  "description": "Node server running the vcMAP, with an example plugin for developers",
  "scripts": {
    "build": "gulp",
    "start": "node build/dev-server.js",
    "examples": "node build/dev-server.js examples"
  },
  "author": "virtualcitysystems",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.5.4",
    "@babel/runtime": "^7.5.4",
    "@vue/babel-preset-app": "^3.9.2",
    "babel-loader": "^8.0.6",
    "babel-plugin-istanbul": "^3.1.2",
    "commander": "^2.12.1",
    "connect-history-api-fallback": "^1.3.0",
    "css-loader": "^0.28.4",
    "del": "^3.0.0",
    "eventsource-polyfill": "^0.9.6",
    "express": "^4.15.3",
    "friendly-errors-webpack-plugin": "^1.6.1",
    "function-bind": "^1.1.0",
    "gulp": "^3.9.1",
    "gulp-if": "^2.0.2",
    "gulp-json-editor": "^2.5.2",
    "gulp-rename": "^1.2.2",
    "gulp-replace": "^0.6.1",
    "gulp-zip": "^4.0.0",
    "html-webpack-plugin": "^2.30.1",
    "http-proxy-middleware": "^0.17.4",
    "opn": "^5.1.0",
    "run-sequence": "^2.2.0",
    "script-ext-html-webpack-plugin": "^2.1.3",
    "style-loader": "^0.18.2",
    "terser": "^4.1.2",
    "vinyl-paths": "^2.1.0",
    "vue": "^2.4.2",
    "vue-hot-reload-api": "^2.1.0",
    "vue-html-loader": "^1.2.4",
    "vue-loader": "^13.0.2",
    "vue-template-compiler": "^2.5.6",
    "webpack": "^3.4.1",
    "webpack-dev-middleware": "^1.12.0",
    "webpack-hot-middleware": "^2.18.2"
  },
  "engines": {
    "node": ">= 6.0.0",
    "npm": ">= 3.0.0",
    "vcm": ">= 3.5.0"
  },
  "dependencies": {
    "ajax-request": "^1.2.3",
    "http-auth": "^4.1.2",
    "jquery": "^3.4.1",
    "npm": "^6.13.6",
    "soap": "^0.30.0"
  },
  "babel": {
    "presets": [
      "@vue/app"
    ]
  }
}