Files
kops-arm64/app/package.json
Tomek Święcicki 34bb4d6917 Add sorting by status (#201)
* add sorting by status

* bump pixi.js to 4.8.5
2019-01-27 23:07:04 +01:00

50 lines
1.5 KiB
JSON

{
"name": "kube-ops-view",
"version": "1.0.0",
"description": "=========================== Kubernetes Operational View ===========================",
"main": "src/app.js",
"config": {
"buildDir": "../kube_ops_view/static/build"
},
"scripts": {
"prestart": "npm install",
"start": "NODE_ENV=development webpack --watch",
"startwin": "SET NODE_ENV=development & webpack --watch",
"webpack": "webpack -p --config ./webpack.config.js",
"build": "NODE_ENV=production npm run webpack",
"buildwin": "SET NODE_ENV=production & npm run webpack",
"prewebpack": "npm run clean",
"lint": "eslint ./src/**/*.js",
"clean": "rimraf $npm_package_config_buildDir && mkdir $npm_package_config_buildDir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hjacobs/kube-ops-view.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hjacobs/kube-ops-view/issues"
},
"homepage": "https://github.com/hjacobs/kube-ops-view#readme",
"dependencies": {
"pixi.js": "^4.8.5",
"babel-runtime": "^6.26.0",
"babel-polyfill": "^6.26.0"
},
"devDependencies": {
"babel-core": "^6.26.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"brfs": "^1.4.3",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"rimraf": "^2.6.2",
"transform-loader": "^0.2.4",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2"
}
}