forked from built-on-openfin/container-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.06 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
{
"name": "use-preloads-restart-on-refresh",
"version": "0.0.1",
"description": "A demonstration of how to configure preload scripts to restart on refresh of a view",
"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": "npm --prefix ../../common/ run client",
"server": "node ./server/build/index.js",
"kill": "npm --prefix ../../common/ run kill",
"setup": "cd ../../../ && npm install && cd how-to/use-preloads/restart-on-refresh && npm run build",
"validate": "npm --prefix ../../../ run validate"
},
"author": "[email protected]",
"license": "SEE LICENSE IN LICENSE.MD",
"devDependencies": {
"express": "^4.17.2",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}