-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.4 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.4 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "devpockit-frontend",
"version": "0.1.4",
"description": "DevPockit Frontend - Developer Tools Web App",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hypkey/devpockit.git"
},
"homepage": "https://devpockit.hypkey.com/",
"bugs": {
"url": "https://github.com/hypkey/devpockit/issues"
},
"keywords": [
"developer-tools",
"nextjs",
"typescript",
"json-formatter",
"uuid-generator",
"jwt-decoder",
"regex-tester",
"cron-parser",
"yaml-converter",
"xml-formatter",
"url-encoder",
"qr-code",
"web-app",
"open-source"
],
"scripts": {
"dev": "next dev",
"dev:https": "next dev --experimental-https",
"build": "next build",
"export": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"build:test": "pnpm type-check && pnpm lint && pnpm test:ci && pnpm build",
"build:verify": "pnpm build && node scripts/verify-build.js",
"serve:build": "python3 -m http.server 8080 --directory out",
"test:build": "bash scripts/test-build.sh"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@shikijs/monaco": "^3.20.0",
"@types/qrcode": "^1.5.6",
"@types/react-window": "^2.0.0",
"@types/uuid": "^11.0.0",
"canvas": "^3.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cron-parser": "^5.4.0",
"diff": "^8.0.2",
"ipaddr.js": "^2.3.0",
"jose": "^6.1.3",
"jsqr": "^1.4.0",
"lucide-react": "^0.562.0",
"monaco-editor": "^0.55.1",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-window": "^2.2.4",
"shiki": "^3.20.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/diff": "^8.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"packageManager": "[email protected]"
}