forked from fossasia/visdom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.37 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
73
74
75
{
"name": "visdom",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.3.1",
"@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.45.0",
"babel-loader": "^10.1.1",
"cypress": "^15.18.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-ignore-generated-and-nolint": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"less": "^4.6.7",
"less-loader": "^13.0.0",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"prettier": "^3.9.5",
"react-devtools": "^7.0.1",
"webpack": "^5.108.4",
"webpack-cli": "^7.2.1",
"webpack-merge": "^6.0.1"
},
"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 excludeSpecPattern=**/*.init.js",
"test:pw": "playwright test --config=playwright.config.js",
"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.4",
"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": "^13.0.0",
"fast-json-patch": "^3.1.1",
"https-browserify": "^1.0.0",
"jquery": "^4.0.0",
"ml-savitzky-golay-generalized": "^5.0.0",
"rc-tree-select": "^5.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-grid-layout": "^2.2.3",
"react-modal": "^3.16.3",
"react-scroll-to-bottom": "^4.2.0",
"react-resize-detector": "^9.1.1",
"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"
}
}