-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.44 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.44 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
{
"name": "it-toolbox",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"pages:dev": "wrangler pages dev dist --compatibility-date=2024-11-01 --port 8788",
"typecheck": "tsc --noEmit",
"lint": "eslint src packages --ext .ts,.tsx",
"deploy": "npm run build && wrangler pages deploy dist --project-name=it-toolbox",
"lint:fix": "eslint src packages --ext .ts,.tsx --fix"
},
"dependencies": {
"hono": "^4.6.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"@tanstack/react-router": "^1.58.0",
"zustand": "^5.0.0",
"fuse.js": "^7.0.0",
"cmdk": "^1.0.0",
"chroma-js": "^2.6.0",
"dayjs": "^1.11.0",
"js-yaml": "^4.1.0",
"diff": "^7.0.0",
"lucide-react": "^0.263.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.5.0",
"marked": "^15.0.0",
"marked-highlight": "^2.1.0",
"highlight.js": "^11.10.0",
"punycode": "^2.3.1",
"bcryptjs": "^2.4.3",
"jose": "^5.9.0",
"sql-formatter": "^15.0.0",
"papaparse": "^5.4.1",
"cron-parser": "^4.9.0",
"cronstrue": "^2.50.0",
"nanoid": "^5.0.0",
"@faker-js/faker": "^9.0.0",
"ua-parser-js": "^1.0.0",
"ulid": "^2.3.0",
"qrcode": "^1.5.3",
"svgo": "^3.3.2",
"exifr": "^7.1.3",
"colorthief": "^2.4.0",
"semver": "^7.6.3",
"browser-image-compression": "^2.0.2",
"prettier": "^3.4.2",
"@peculiar/x509": "^1.12.3",
"jszip": "^3.10.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/js-yaml": "^4.0.0",
"@types/diff": "^5.0.0",
"@types/chroma-js": "^2.4.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.5.0",
"vite": "^6.0.0",
"wrangler": "^3.0.0",
"@types/punycode": "^2.1.0",
"@types/bcryptjs": "^2.4.0",
"@types/papaparse": "^5.3.0",
"@types/ua-parser-js": "^0.7.0",
"@types/qrcode": "^1.5.5",
"eslint": "^9.0.0",
"@eslint/js": "^9.0.0",
"typescript-eslint": "^8.0.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"smol-toml": "^1.3.0",
"@types/semver": "^7.5.8",
"@types/colorthief": "^2.3.0",
"@types/jszip": "^3.4.0",
"@types/zxcvbn": "^4.4.4"
}
}