-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.43 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.43 KB
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.6.0",
"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",
"start:dev": "NODE_PATH=./node_modules node ./node_modules/.bin/mage.service -C config.js",
"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": "file:../plugins/arcgis/service",
"@ngageoint/mage.arcgis.web-app": "file:../plugins/arcgis/web-app/dist/main",
"@ngageoint/mage.nga-msi": "file:../plugins/nga-msi",
"@ngageoint/mage.service": "../service",
"@ngageoint/mage.sftp.service": "file:../plugins/sftp/service",
"@ngageoint/mage.sftp.web": "file:../plugins/sftp/web/dist/main",
"@ngageoint/mage.web-app": "../web-app/dist",
"better-sqlite3": "^11.10.0"
}
}