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
31 lines (31 loc) · 1.16 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.16 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
{
"name": "use-popup-window-multiple-results",
"version": "0.0.1",
"description": "A demonstration of a popup window that can return multiple results.",
"main": "index.js",
"scripts": {
"build": "npm run build-server & npm run build-client",
"build-server": "tsc --project ./server",
"build-client": "webpack build --config ./client/webpack.config.js --mode=development",
"build-client-prod": "webpack build --config ./client/webpack.config.js --mode=production",
"start": "npm run server",
"client": "start fin://localhost:8080/config/platform.fin.json",
"server": "node ./server/build/app.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"
},
"author": "@connormccafferty",
"license": "MIT",
"devDependencies": {
"@openfin/core": "^27.70.8",
"@types/node": "^17.0.26",
"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"
}
}