-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.47 KB
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
44
45
46
47
{
"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 --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 --no-warn-ignored ./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/filter-crt": "^5.1.1",
"@babel/runtime": "^7.24.0",
"pixi.js": "^8.15.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@eslint/js": "^9.18.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^10.0.0",
"eslint": "^9.18.0",
"eslint-webpack-plugin": "^5.0.2",
"rimraf": "^6.1.2",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1"
}
}