-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "data-flow-visualization-react",
"version": "0.1.0",
"author": "Tibo Stroo",
"license": "MIT",
"private": true,
"homepage": "https://tibostr.github.io/dataflow-visualization",
"dependencies": {
"@loadable/component": "^5.15.2",
"@monaco-editor/react": "^4.4.5",
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"bootstrap": "^5.2.0",
"dagre": "^0.8.5",
"js-yaml": "^4.1.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-flow-renderer": "^10.3.12",
"react-icons": "^4.4.0",
"react-router-dom": "^6.2.2",
"react-screen-capture": "^1.0.1",
"react-scripts": "5.0.1",
"use-screen-recording": "^2.0.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"build:docs": "npm test -- createSchemas.js --watchAll=false",
"prepare": "husky install"
},
"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": {
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"string-to-react": "^1.0.2"
}
}