-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
36 lines (36 loc) · 1.46 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
{
"name": "@ngageoint/mage.dev-instance",
"version": "6.3.0-beta.6",
"description": "Assemble a MAGE Server deployment from the core service, the web-app, and selected plugins. This is primarily a development tool because the dependencies point to relative directories instead of production packages. This can however serve as a starting point to create a production MAGE instance package.json.",
"scripts": {
"start": "npm run start:dev-env",
"start:dev": "NODE_PATH=./node_modules node ./node_modules/.bin/mage.service -C config.js",
"start:dev-env": "NODE_PATH=./node_modules node ./node_modules/.bin/mage.service",
"postinstall": "node ./init.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/mage-server.git"
},
"keywords": [
"nga",
"mage",
"geospatial",
"situational awareness"
],
"author": "Robert St. John",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngageoint/mage-server/issues"
},
"homepage": "https://github.com/ngageoint/mage-server",
"dependencies": {
"@ngageoint/mage.arcgis.service": "../plugins/arcgis/service",
"@ngageoint/mage.arcgis.web-app": "../plugins/arcgis/web-app/dist/main",
"@ngageoint/mage.image.service": "../plugins/image/service",
"@ngageoint/mage.nga-msi": "../plugins/nga-msi",
"@ngageoint/mage.random": "../plugins/random",
"@ngageoint/mage.service": "../service",
"@ngageoint/mage.web-app": "../web-app/dist"
}
}