-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.3 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.3 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
{
"name": "netted",
"version": "0.1.0",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@nivo/network": "^0.75.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-d3-graph": "^2.6.3",
"@types/react-dom": "^17.0.0",
"@types/react-json-tree": "^0.13.0",
"@types/react-vis": "^1.11.9",
"bootstrap": "^5.1.3",
"cntric-component-library": "^0.1.11",
"framer-motion": "^5.5.5",
"gojs": "^2.1.52",
"gojs-react": "^1.1.0",
"jsoneditor-react": "^3.1.1",
"object-editor-react": "^1.1.0",
"react": "^17.0.2",
"react-bootstrap": "^2.0.4",
"react-bootstrap-icons": "^1.6.1",
"react-d3-graph": "^2.6.0",
"react-dom": "^17.0.2",
"react-graph-vis": "^1.0.7",
"react-json-tree": "^0.15.0",
"react-scripts": "4.0.3",
"react-vis": "^1.11.7",
"react-vis-network-graph": "^3.0.1",
"react-zoom-pan-pinch": "^2.1.3",
"reaflow": "^4.2.11",
"shortid": "^2.2.16",
"ts-jest": "^27.1.2",
"typescript": "^4.1.2",
"vis-data": "^7.1.2",
"vis-network": "^9.1.0",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --verbose --coverage --maxWorkers=50% ./src --env=jsdom",
"eject": "react-scripts eject",
"dist": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./tsconfig-fixup"
},
"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": {
"rgfm": "https://github.com/concentricio/rgfm"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!vis\\-.*)"
]
}
}