-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "@pythnetwork/entropy-debugger",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "22"
},
"scripts": {
"build": "next build",
"fix:format": "prettier --write .",
"fix:lint": "eslint --fix . --max-warnings 0",
"start:dev": "next dev --port 3005",
"start:prod": "next start --port 3005",
"test:format": "prettier --check .",
"test:lint": "eslint . --max-warnings 0",
"test:types": "tsc"
},
"dependencies": {
"@radix-ui/react-select": "catalog:",
"@radix-ui/react-slot": "catalog:",
"@radix-ui/react-switch": "catalog:",
"class-variance-authority": "catalog:",
"clsx": "catalog:",
"highlight.js": "catalog:",
"lucide-react": "catalog:",
"next": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"tailwind-merge": "catalog:",
"tailwindcss-animate": "catalog:",
"viem": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@cprussin/eslint-config": "catalog:",
"@cprussin/jest-config": "catalog:",
"@cprussin/prettier-config": "catalog:",
"@cprussin/tsconfig": "catalog:",
"@types/jest": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"eslint": "catalog:",
"jest": "catalog:",
"postcss": "catalog:",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"vercel": "catalog:"
}
}