-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.04 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "semantic-diff",
"version": "1.0.0",
"type": "module",
"homepage": "https://toemmsche.github.io/semantic-diff",
"description": "",
"main": "dist/src/semantic-diff/index.js",
"types": "dist/src/semantic-diff/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"compile": "rm -rf dist && tsc --outDir dist && node suffix.js",
"main": "npm run compile && node dist/src/semantic-diff/main.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"bin": {
"semanticdiff": "dist/src/semantic-diff/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Toemmsche/semantic-diff.git"
},
"author": "'",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Toemmsche/semantic-diff/issues"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/d3": "latest",
"@types/d3-scale": "^4.0.3",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/vkbeautify": "^0.99.2",
"@types/yargs": "^17.0.10",
"@xmldom/xmldom": "^0.8.6",
"animejs": "^3.2.1",
"chart.js": "^4.1.1",
"color": "^4.2.3",
"d3-hierarchy": "^3.1.2",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-timer": "latest",
"dagre-d3": "^0.6.4",
"elkjs": "^0.8.2",
"fast-xml-parser": "^4.0.6",
"murmur-32": "^1.0.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.1.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-sticky-box": "^1.0.2",
"react-sweet-state": "^2.6.5",
"reactflow": "^11.3.3",
"styled-components": "^5.3.6",
"typeface-roboto": "^1.1.13",
"uuid": "^9.0.0",
"vkbeautify": "^0.99.3",
"web-vitals": "^2.1.4",
"yargs": "^17.5.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/animejs": "^3.1.7",
"@types/color": "^3.0.3",
"@types/dagre-d3": "^0.6.3",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"gh-pages": "^5.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"web-worker": "^1.2.0"
}
}