-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.8 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.8 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "tmvisuals",
"private": false,
"version": "2.3.0",
"type": "module",
"description": "Interactive mind map visualization for Claude Task Master tasks with hierarchical dependencies, status tracking, and editor integration.",
"taskmasterCompatibility": "0.25.1",
"keywords": [
"task-management",
"visualization",
"mind-map",
"react",
"typescript",
"claude",
"task-master"
],
"author": "jason mcelhenney <me@zodworks.dev>",
"license": "MIT",
"bin": {
"tmvisuals": "./bin/tmvisuals.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zudsniper/tmvisuals.git"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist/",
"bin/",
"server.js",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"DEPLOYMENT.md",
"utils/"
],
"scripts": {
"dev": "vite",
"build": "tsc --project . && vite build",
"preview": "vite preview",
"server": "node server.js",
"dev:server": "nodemon server.js",
"dev:full": "concurrently \"npm run dev\" \"npm run dev:server\"",
"start": "npm run build && npm run server",
"start:clean": "lsof -ti:3001 | xargs kill -9 2>/dev/null || true && npm run start",
"generate-favicons": "node scripts/generate-favicons.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "echo \"📋 Linting coming soon!\" && exit 0",
"clean": "rm -rf dist node_modules",
"reinstall": "npm run clean && npm install",
"pack:test": "npm pack --dry-run",
"prepack": "npm run build"
},
"dependencies": {
"@types/d3-force": "^3.0.10",
"chokidar": "^3.6.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"d3-force": "^3.0.0",
"express": "^4.21.2",
"fs-extra": "^11.3.0",
"html2canvas": "^1.4.1",
"lucide-react": "^0.414.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.11.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^4.17.22",
"@types/fs-extra": "^11.0.4",
"@types/html2canvas": "^1.0.0",
"@types/jest": "^30.0.0",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^30.0.3",
"nodemon": "^3.1.10",
"png-to-ico": "^2.1.8",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.0",
"typescript": "^5.2.2",
"vite": "^5.1.6"
}
}