-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
99 lines (99 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "graphviz-visual-editor",
"version": "1.3.0",
"description": "A web application for interactive visual editing of Graphviz graphs described in the DOT language",
"keywords": [
"Graphviz",
"DOT",
"visual-editor",
"javascript",
"graph-drawing",
"graph-visualization",
"graph-view",
"graphviz-dot-language",
"graphviz-viewer",
"wysiwyg",
"wysiwyg-editor",
"interactive-visualization",
"text-editor",
"web-application "
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/magjac/graphviz-visual-editor.git"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/codemod": "^5.15.14",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"ace-builds": "^1.35.5",
"d3-graphviz": "^5.6.0",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"moment": "^2.30.1",
"prop-types": "^15.8.1",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-ace": "^12.0.0",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"react-perfect-scrollbar": "^1.5.8",
"react-scripts": "^5.0.1",
"tss-react": "^4.9.12",
"typeface-roboto": "^1.1.13"
},
"scripts": {
"start": "react-scripts --max_old_space_size=4096 start",
"start:coverage": "react-scripts --max_old_space_size=4096 -r @cypress/instrument-cra start",
"build": "react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test --env=jsdom --verbose=false",
"test:coverage": "react-scripts test --env=jsdom --coverage --coverageDirectory=./coverage-jest",
"integration-test": "cypress run --config video=${CI:-false} --browser=chrome --headless --record --key a12725d3-851c-4e67-b432-079b4fb1a875",
"merge-coverage": "mkdir -p coverage && cp -p coverage-jest/coverage-final.json coverage/coverage-final-jest.json && cp -p coverage-cypress/coverage-final.json coverage/coverage-final-cypress.json && nyc report --temp-dir coverage --report-dir coverage --reporter lcov --reporter clover --reporter json --reporter text",
"eject": "react-scripts eject"
},
"homepage": ".",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@cypress/code-coverage": "^3.12.45",
"@cypress/instrument-cra": "^1.4.0",
"@harrison-ifeanyichukwu/xml-serializer": "^1.2.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"codecov": "^3.8.3",
"cypress": "^13.13.3",
"enzyme": "^3.11.0",
"istanbul-lib-coverage": "^3.2.2",
"nyc": "^17.0.0",
"peggy": "^4.0.3",
"wait-on": "^8.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"src/test-utils",
"src/shapes.js",
"src/dotParser.js"
]
},
"nyc": {
"report-dir": "coverage-cypress"
}
}