-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
70 lines (70 loc) · 2.17 KB
/
package.json
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
{
"name": "visdom",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.3",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.3.0",
"cypress": "^9.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-ignore-generated-and-nolint": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"prettier": "^2.8.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"dev": "webpack --watch --progress --config webpack.dev.js",
"build": "webpack --progress --config webpack.prod.js",
"test:gui": "cypress open",
"test:init": "cypress run --spec './cypress/integration/screenshots.init.js'",
"test:visual": "cypress run --spec './cypress/integration/screenshots.js'",
"test": "cypress run --config ignoreTestFiles=*.init.js",
"lint": "eslint js/.",
"lint:fix": "eslint --fix --ext .js,.jsx js/"
},
"dependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"css-loader": "^6.7.3",
"d3-dispatch": "^1.0.6",
"d3-drag": "^1.2.5",
"d3-polygon": "^1.0.6",
"d3-selection": "^1.4.2",
"d3-zoom": "^1.8.3",
"debounce": "^1.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"fast-json-patch": "^3.1.1",
"https-browserify": "^1.0.0",
"jquery": "^3.6.3",
"ml-savitzky-golay-generalized": "^4.0.1",
"rc-tree-select": "^1.12.13",
"react": "^17.0.2",
"react-devtools": "^4.27.1",
"react-dom": "^17.0.2",
"react-grid-layout": "0.16.6",
"react-modal": "^3.16.1",
"react-resize-detector": "^7.1.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^3.3.1",
"three": "^0.105.2",
"url": "^0.11.0",
"util": "^0.12.5",
"whatwg-fetch": "^3.6.2"
}
}