forked from luiemilio/container-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 999 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 999 Bytes
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
{
"name": "use-dynamic-manifest-basic",
"version": "0.0.1",
"description": "A basic demonstration of how to use dynamic manifest",
"main": "index.js",
"scripts": {
"build": "npm run build-server",
"build-server": "tsc --project ./server",
"start": "npm run server",
"server": "node ./server/build/index.js",
"kill": "(npm run -s kill:fin || true) && (npm run -s kill:rvm || true)",
"kill:fin": "cmd.exe /c taskkill /F /IM OpenFin.exe /T",
"kill:rvm": "cmd.exe /c taskkill /F /IM OpenFinRVM.exe /T",
"client" :"start fin://localhost:8080/manifest?env=dev",
"dev" :"start fin://localhost:8080/manifest?env=dev",
"staging" :"start fin://localhost:8080/manifest?env=staging"
},
"author": "@pj",
"license": "MIT",
"devDependencies": {
"express": "^4.17.2",
"openfin-adapter": "^23.67.7",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}