-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.95 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
{
"name": "visualizer",
"version": "0.0.1",
"description": "a dataflow visualizer",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode production",
"lint-local": "npx eslint --version && npx eslint source/ --rule \"no-warning-comments: off\"",
"lint": "npx eslint --version && npx eslint source/"
},
"eslintConfig": {
"settings": {
"import/resolver": {
"node": {
"extensions": [
".ts"
]
}
}
},
"extends": [
"@eagleoutice/eslint-config-flowr"
],
"rules": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Inspect/flowr-df-visualizer"
},
"author": "Florian Sihler",
"license": "ISC",
"devDependencies": {
"@eagleoutice/eslint-config-flowr": "^1.0.8",
"@stylistic/eslint-plugin": "^2.6.2",
"@stylistic/eslint-plugin-plus": "^2.6.2",
"@stylistic/eslint-plugin-ts": "^2.6.2",
"@types/uuid": "^9.0.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.57.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"dependencies": {
"@eagleoutice/flowr": "^2.0.9",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@xyflow/react": "^12.0.4",
"allotment": "^1.17.0",
"css-loader": "^6.7.1",
"elkjs": "^0.9.2",
"highlight.js": "^11.6.0",
"monaco-editor": "^0.50.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"react-split-pane": "^0.1.92",
"style-loader": "^3.3.1",
"uuid": "^9.0.0",
"webpack-manifest-plugin": "^5.0.0"
}
}