-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
48
49
50
51
52
53
{
"name": "postgres-operator-ui",
"version": "1.10.1",
"description": "PostgreSQL Operator UI",
"main": "src/app.js",
"config": {
"buildDir": "../operator_ui/static/build"
},
"scripts": {
"prestart": "npm install",
"start": "NODE_ENV=development webpack --watch",
"webpack": "webpack --config ./webpack.config.js",
"build": "NODE_ENV=development 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/cybertec-postgresql/cybertec-pg-operator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cybertec-postgresql/cybertec-pg-operator.git/issues"
},
"homepage": "https://github.com/cybertec-postgresql/cybertec-pg-operator.git#readme",
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.20.13",
"pixi.js": "^7.1.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^8.2.5",
"brfs": "^2.0.2",
"dedent-js": "1.0.1",
"eslint": "^8.32.0",
"js-yaml": "4.1.1",
"pug": "^3.0.2",
"rimraf": "^4.1.2",
"riot": "^3.13.2",
"riot-hot-reload": "1.0.0",
"riot-route": "^3.1.4",
"riot-tag-loader": "2.1.0",
"sort-by": "^1.2.0",
"transform-loader": "^0.2.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
}
}