package.json 2.3 KB
Newer Older
V
Vlad Ilyushchenko 已提交
1
{
V
Vlad Ilyushchenko 已提交
2
  "name": "questdb-console",
V
Vlad Ilyushchenko 已提交
3
  "version": "0.0.1",
4
  "license": "Apache-2.0",
V
Vlad Ilyushchenko 已提交
5
  "description": "QuestDB Console",
V
Vlad Ilyushchenko 已提交
6 7
  "repository": {
    "type": "git",
8
    "url": "https://github.com/questdb/questdb.git"
V
Vlad Ilyushchenko 已提交
9 10 11
  },
  "private": true,
  "engines": {
12
    "node": ">=12.16.2"
V
Vlad Ilyushchenko 已提交
13
  },
14
  "scripts": {
15
    "ci:lint": "eslint 'src/js/**/*' --max-warnings=0 --config .eslintrc.js",
16 17 18 19 20
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch",
    "build": "cross-env NODE_ENV=production webpack && node utils/deploy.js",
    "start": "webpack-dev-server --progress",
    "analyze-bundle": "cross-env ANALYZE=true NODE_ENV=production webpack-cli --display-reasons"
21 22
  },
  "dependencies": {
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    "@fortawesome/fontawesome-free": "5.13.0",
    "ace-builds": "1.4.11",
    "animate.css": "3.7.2",
    "bootstrap-sass": "3.4.1",
    "clipboard": "2.0.6",
    "docsearch.js": "2.6.3",
    "echarts": "4.7.0",
    "glyphicons-halflings": "1.9.1",
    "jquery": "3.5.0",
    "metismenu": "3.0.6",
    "slim-select": "1.25.0"
  },
  "devDependencies": {
    "@babel/cli": "7.8.4",
    "@babel/core": "7.9.0",
    "@babel/preset-env": "7.9.5",
    "@babel/preset-typescript": "7.9.0",
    "@typescript-eslint/eslint-plugin": "2.29.0",
    "@typescript-eslint/parser": "2.29.0",
    "babel-loader": "8.1.0",
    "clean-webpack-plugin": "3.0.0",
    "copy-webpack-plugin": "5.1.1",
    "cross-env": "^7.0.2",
    "css-loader": "3.5.2",
    "eslint": "6.8.0",
    "eslint-config-prettier": "6.10.1",
    "eslint-config-standard": "14.1.1",
    "eslint-plugin-babel": "5.3.0",
    "eslint-plugin-import": "2.20.2",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-prettier": "3.1.3",
    "eslint-plugin-promise": "4.2.1",
    "eslint-plugin-standard": "4.0.1",
    "file-loader": "6.0.0",
    "fork-ts-checker-webpack-plugin": "4.1.3",
    "handlebars": "4.7.6",
    "handlebars-loader": "1.7.1",
    "html-webpack-plugin": "4.2.0",
    "mini-css-extract-plugin": "0.9.0",
    "prettier": "2.0.5",
    "rimraf": "3.0.2",
    "sass": "1.26.3",
    "sass-loader": "8.0.2",
    "style-loader": "1.1.4",
    "typescript": "3.8.3",
    "webpack": "4.43.0",
    "webpack-bundle-analyzer": "3.7.0",
    "webpack-cli": "3.3.11",
    "webpack-dev-server": "3.10.3",
    "wrench": "1.5.9"
  },
  "author": {
    "name": "QuestDB"
V
Vlad Ilyushchenko 已提交
76 77
  }
}