package.json 1.94 KB
Newer Older
Patrick's avatar
Patrick committed
1
2
3
4
5
6
7
{
  "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",
8
9
    "examples": "node build/dev-server.js examples",
    "preinstall": "npx npm-force-resolutions"
Patrick's avatar
Patrick committed
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
  },
  "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",
Patrick's avatar
Patrick committed
57
58
    "axios": "^0.21.1",
    "got": "^11.8.1",
Patrick's avatar
Patrick committed
59
60
61
    "http-auth": "^4.1.2",
    "jquery": "^3.4.1",
    "npm": "^6.13.6",
Patrick's avatar
Patrick committed
62
    "pg-promise": "^10.9.2",
63
    "request": "^2.81.0",
Patrick's avatar
Patrick committed
64
65
66
67
68
69
    "soap": "^0.30.0"
  },
  "babel": {
    "presets": [
      "@vue/app"
    ]
70
71
72
  },
  "resolutions": {
    "graceful-fs": "4.2.3"
Patrick's avatar
Patrick committed
73
74
  }
}