-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "obsidian-network-sot",
"version": "0.1.0",
"description": "Network Source of Truth for CCNA Students - Markdown-based Network IPAM",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"format": "prettier --write src"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.4.0",
"yaml": "^2.3.0",
"jszip": "^3.10.1",
"cytoscape": "^3.23.0",
"cytoscape-popper": "^2.1.0",
"lucide-react": "^0.263.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"vite": "^4.4.0",
"@vitejs/plugin-react": "^4.0.0",
"vitest": "^0.34.0",
"@testing-library/react": "^14.0.0",
"@testing-library/jest-dom": "^6.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0"
}
}