aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/package.json
blob: d57ca21a6d708803e15348f511879e71b3503c47 (plain) (blame)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
  "//": [
    "SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>",
    "",
    "SPDX-License-Identifier: EPL-2.0"
  ],
  "name": "@refinery/frontend",
  "version": "0.0.0",
  "description": "Web frontend for Refinery",
  "type": "module",
  "private": true,
  "scripts": {
    "build": "cross-env MODE=production vite build",
    "serve": "cross-env MODE=development vite serve",
    "typegen": "xstate typegen \"src/**/*.ts?(x)\"",
    "typecheck": "tsc -p tsconfig.shared.json && tsc -p tsconfig.node.json && tsc -p tsconfig.json",
    "lint": "node config/eslintReport.cjs",
    "lint:fix": "yarn run lint --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/graphs4value/refinery.git"
  },
  "author": "The Refinery Authors <https://refinery.tools/>",
  "license": "EPL-2.0",
  "bugs": {
    "url": "https://github.com/graphs4value/refinery/issues"
  },
  "homepage": "https://refinery.tools",
  "dependencies": {
    "@codemirror/autocomplete": "^6.11.1",
    "@codemirror/commands": "^6.3.3",
    "@codemirror/language": "^6.10.0",
    "@codemirror/lint": "^6.4.2",
    "@codemirror/search": "^6.5.5",
    "@codemirror/state": "^6.4.0",
    "@codemirror/view": "^6.23.0",
    "@emotion/react": "^11.11.3",
    "@emotion/styled": "^11.11.0",
    "@fontsource-variable/jetbrains-mono": "^5.0.19",
    "@fontsource-variable/open-sans": "^5.0.21",
    "@hpcc-js/wasm": "^2.15.3",
    "@lezer/common": "^1.2.0",
    "@lezer/highlight": "^1.2.0",
    "@lezer/lr": "^1.3.14",
    "@material-icons/svg": "^1.0.33",
    "@mui/icons-material": "^5.15.3",
    "@mui/material": "^5.15.3",
    "@mui/system": "^5.15.3",
    "@mui/x-data-grid": "^6.18.7",
    "ansi-styles": "^6.2.1",
    "csstype": "^3.1.3",
    "d3": "^7.8.5",
    "d3-graphviz": "patch:d3-graphviz@npm%3A5.2.0#~/.yarn/patches/d3-graphviz-npm-5.2.0-161b1fbad4.patch",
    "d3-selection": "^3.0.0",
    "d3-zoom": "patch:d3-zoom@npm%3A3.0.0#~/.yarn/patches/d3-zoom-npm-3.0.0-18f706a421.patch",
    "escape-string-regexp": "^5.0.0",
    "lodash-es": "^4.17.21",
    "loglevel": "^1.8.1",
    "loglevel-plugin-prefix": "^0.8.4",
    "mobx": "^6.12.0",
    "mobx-react-lite": "^4.0.5",
    "ms": "^2.1.3",
    "nanoid": "^5.0.4",
    "notistack": "^3.0.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-resize-detector": "^9.1.1",
    "xstate": "^4.38.3",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@lezer/generator": "^1.5.1",
    "@types/d3": "^7.4.3",
    "@types/d3-graphviz": "^2.6.10",
    "@types/d3-selection": "^3.0.10",
    "@types/d3-zoom": "^3.0.8",
    "@types/eslint": "^8.56.1",
    "@types/html-minifier-terser": "^7.0.2",
    "@types/lodash-es": "^4.17.12",
    "@types/micromatch": "^4.0.6",
    "@types/ms": "^0.7.34",
    "@types/node": "^20.10.7",
    "@types/pnpapi": "^0.0.5",
    "@types/react": "^18.2.47",
    "@types/react-dom": "^18.2.18",
    "@typescript-eslint/eslint-plugin": "^6.18.0",
    "@typescript-eslint/parser": "^6.18.0",
    "@vitejs/plugin-react-swc": "^3.5.0",
    "@xstate/cli": "^0.5.17",
    "cross-env": "^7.0.3",
    "eslint": "^8.56.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^17.1.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jsx-a11y": "^6.8.0",
    "eslint-plugin-mobx": "^0.0.9",
    "eslint-plugin-prettier": "^5.1.2",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "html-minifier-terser": "^7.2.0",
    "micromatch": "^4.0.5",
    "pnpapi": "^0.0.0",
    "prettier": "^3.1.1",
    "typescript": "5.3.3",
    "vite": "^5.0.11",
    "vite-plugin-pwa": "^0.17.4",
    "workbox-window": "^7.0.0"
  }
}