-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 748 Bytes
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
{
"name": "git-visualizer",
"description": "A web based application to represent github repo's / git database in graph format",
"version": "0.0.0",
"author": {
"name": "sleepingsaint",
"url": "https://github.com/sleepingsaint/git-visualizer"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.7.3"
},
"devDependencies": {
"@types/d3": "^7.1.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-tsconfig-paths": "^3.3.17"
}
}