-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "backend",
"version": "1.0.0",
"description": "APIserver proxy for Busola",
"main": "backend.index.js",
"scripts": {
"start": "SSL_CERT_FILE=certs.pem NODE_ENV=development nodemon --exec babel-node index.js",
"build": "webpack --mode=production",
"start:prod": "SSL_CERT_FILE=certs.pem NODE_ENV=production node --max-http-header-size 24576 backend-production.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.13.10",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.21.2",
"https": "^1.0.0",
"jose": "^5.2.4",
"js-yaml": "^4.1.0",
"lodash.merge": "^4.6.2",
"pino-http": "^5.7.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.12.10",
"babel-loader": "^8.2.2",
"core-js": "^3.8.1",
"jest": "^29.7.0",
"nodemon": "^2.0.7",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"node": {
"child_process": false
}
}