-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 952 Bytes
/
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
{
"name": "a-star-algorithm-vizualization",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"firebase": "^9.19.1",
"js-priority-queue": "^0.1.5",
"konva": "^8.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-konva": "^18.2.5"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"vite": "^4.2.0"
},
"description": "A web app to visualize A* algorithm",
"repository": {
"type": "git",
"url": "git+https://github.com/TheClearSky/a-star-algorithm-vizualization.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheClearSky/a-star-algorithm-vizualization/issues"
},
"homepage": "https://github.com/TheClearSky/a-star-algorithm-vizualization#readme"
}