-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "visdom",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/eslint-parser": "^7.29.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@playwright/test": "^1.62.1",
"babel-loader": "^10.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-ignore-generated-and-nolint": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"less": "^4.9.0",
"less-loader": "^13.0.0",
"prettier": "^3.9.6",
"react-devtools": "^7.0.1",
"webpack": "^5.110.2",
"webpack-cli": "^7.2.3",
"webpack-merge": "^6.0.1"
},
"scripts": {
"dev": "webpack --watch --progress --config webpack.dev.js",
"build": "webpack --progress --config webpack.prod.js",
"test": "playwright test --config=playwright.config.js",
"test:polling": "playwright test --config=playwright.polling.config.js",
"test:init": "playwright test --config=playwright.init.config.js",
"test:visual": "playwright test --config=playwright.visual.config.js",
"test:gui": "playwright test --config=playwright.config.js --ui",
"lint": "eslint js/.",
"lint:fix": "eslint --fix --ext .js,.jsx js/"
},
"dependencies": {
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"css-loader": "^7.1.5",
"d3-dispatch": "^3.0.1",
"d3-drag": "^3.0.0",
"d3-polygon": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"debounce": "^3.0.0",
"eslint-plugin-simple-import-sort": "^14.0.0",
"fast-json-patch": "^3.1.1",
"https-browserify": "^1.0.0",
"jquery": "^4.0.0",
"lucide-react": "^1.38.0",
"ml-savitzky-golay-generalized": "^5.0.0",
"rc-slider": "^11.1.9",
"rc-tree-select": "^5.27.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-grid-layout": "^2.2.4",
"react-modal": "^3.16.3",
"react-resize-detector": "^12.3.0",
"react-scroll-to-bottom": "^4.2.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^4.0.0",
"three": "^0.184.0",
"url": "^0.11.4",
"util": "^0.12.5",
"whatwg-fetch": "^3.6.20"
}
}