forked from MetaversalCorp/MSF_Map_Svc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.84 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@metaversalcorp/msf_map_svc",
"version": "1.1.0",
"description": "Metaverse spatial fabric map service",
"scripts": {
"build:win:mssql": "npm run build:win:base && npm run build:win:web && copy .\\svc\\config\\SQL_Server\\*.* dist\\ && cd db\\SQL_Server\\_Create\\ && .\\Create.bat && copy ..\\_Distrib\\MSF_Map.sql ..\\..\\..\\dist\\",
"build:win:mysql": "npm run build:win:base && npm run build:win:web && copy .\\svc\\config\\MySQL\\*.* dist\\ && cd db\\MySQL\\_Create\\ && .\\Create.bat && copy ..\\_Distrib\\MSF_Map.sql ..\\..\\..\\dist\\",
"build:win:web": "mkdirp dist\\web && xcopy .\\sa\\site dist\\web /E /I /Y",
"build:win:base": "mkdirp dist\\Handlers && mkdirp dist\\ssl && copy .\\svc\\handler.json dist\\ && copy .\\svc\\*.js dist\\ && copy .\\svc\\Handlers\\*.js dist\\Handlers",
"build:linux:mssql": "npm run build:linux:base && npm run build:linux:web && cp svc/config/SQL_Server/* dist/ && cd db/SQL_Server/_Create && chmod +x ./Create.sh && ./Create.sh && cp ../_Distrib/MSF_Map.sql ../../../dist/",
"build:linux:mysql": "npm run build:linux:base && npm run build:linux:web && cp svc/config/MySQL/* dist/ && cd db/MySQL/_Create && chmod +x ./Create.sh && ./Create.sh && cp ../_Distrib/MSF_Map.sql ../../../dist/",
"build:linux:web": "mkdir -p dist/web && cp -r sa/site/* dist/web/",
"build:linux:base": "mkdir -p dist/Handlers && mkdir -p dist/ssl && cp svc/handler.json dist/ && cp svc/*.js dist/ && cp svc/Handlers/*.js dist/Handlers/",
"build:railway": "npm run build:linux:base && npm run build:linux:web && cp svc/config/Railway/* dist/ && cd db/MySQL/_Create && chmod +x ./Create.sh && ./Create.sh && cp ../_Distrib/MSF_Map.sql ../../../dist/"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"mkdirp": "^3.0.1"
}
}