forked from fossasia/visdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "visdom",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"cypress": "^9.5.4",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ignore-generated-and-nolint": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"react-select": "^2.4.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"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/."
},
"dependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"create-react-class": "^15.7.0",
"css-loader": "^6.7.1",
"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",
"fast-json-patch": "^3.1.1",
"https-browserify": "^1.0.0",
"jquery": "^3.6.0",
"json-stable-stringify": "^1.0.1",
"md5": "^2.3.0",
"ml-savitzky-golay-generalized": "^4.0.1",
"rc-tree-select": "^1.12.13",
"react": "^16.14.0",
"react-devtools": "^4.24.4",
"react-dom": "^16.14.0",
"react-grid-layout": "0.16.6",
"react-modal": "^3.14.4",
"react-resize-detector": "^4.2.3",
"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.4",
"whatwg-fetch": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}