-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "venn-diagrams",
"private": true,
"description": "This tool visualizes set operations",
"version": "2.0.0",
"author": "Fabian Loewe <fabianl@th-brandenburg.de>, Jan Vandenhouten <vandenho@th-brandenburg.de>",
"dependencies": {
"@visx/group": "^3.12.0",
"@visx/shape": "^3.12.0",
"d3-shape": "latest",
"detect-browser-language": "^0.0.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-accessible-accordion": "^5.0.0",
"react-color": "^2.19.3",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-grid-layout": "^1.5.0",
"react-helmet": "^6.1.0",
"react-toastify": "^11.0.3",
"simple-keyboard": "^3.8.32",
"styled-components": "^6.1.15",
"typeface-roboto": "^1.1.13",
"typeface-roboto-mono": "^1.1.13",
"typeface-source-sans-pro": "^1.1.13"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@vitejs/plugin-react": "^4.3.4",
"jest": "^29.7.0",
"prettier": "^3.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"unplugin-yaml": "^2.0.1",
"vite": "^6.1.0"
},
"keywords": [
"venn-diagrams",
"venn"
],
"license": "MIT",
"scripts": {
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run dev",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/hyronx/venn-diagrams.git"
},
"bugs": {
"url": "https://github.com/hyronx/venn-diagrams/issues"
}
}