-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "edsc-microk8s-controller",
"version": "1.0.0",
"description": "ESDC MicroK8s Controller",
"private": true,
"scripts": {
"build": "npx webpack --config webpack.config.prod.js",
"start": "nodemon -x 'printf '\\e[2J\\e[3J\\e[H';clear;node' --unhandled-rejections=warn app/server.js -- --verbose --image-pull-policy Never",
"deploy": "skaffold build -q | skaffold deploy --build-artifacts -"
},
"author": "Dennis Pfisterer <[email protected]>",
"license": "BSD",
"dependencies": {
"@awaitjs/express": "^0.7.2",
"@babel/runtime": "^7.14.0",
"@kubernetes/client-node": "^0.14.3",
"commander": "^7.2.0",
"express": "^4.17.1",
"js-yaml": "^4.1.0",
"log4js": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.0",
"babel-loader": "^8.2.2",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}