[PS-801] Re-add dependencies to the cli (#2878)

This commit is contained in:
Oscar Hinton 2022-06-13 15:50:11 +02:00 committed by GitHub
parent e8a1c60ed5
commit 4f9079dd4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3570 additions and 0 deletions

3538
apps/cli/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -42,5 +42,32 @@
},
"pkg": {
"assets": "./build/**/*"
},
"dependencies": {
"@koa/multer": "^3.0.0",
"@koa/router": "^10.1.1",
"big-integer": "1.6.48",
"browser-hrtime": "^1.1.8",
"chalk": "^4.1.1",
"commander": "7.2.0",
"form-data": "4.0.0",
"https-proxy-agent": "5.0.0",
"inquirer": "8.0.0",
"jsdom": "^16.5.3",
"jszip": "^3.7.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"lowdb": "1.0.0",
"lunr": "^2.3.9",
"multer": "^1.4.4",
"node-fetch": "^2.6.1",
"node-forge": "1.3.1",
"open": "^8.0.8",
"papaparse": "^5.3.0",
"proper-lockfile": "^4.1.2",
"rxjs": "6.6.7",
"tldjs": "^2.3.1",
"zxcvbn": "^4.4.2"
}
}

View File

@ -74,6 +74,11 @@ const webpackConfig = {
},
module: { rules: moduleRules },
plugins: plugins,
externals: [
nodeExternals({
modulesDir: "../../node_modules",
}),
],
};
module.exports = webpackConfig;