-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.04 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
{
"name": "validator-beat",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build:og": "ts-node -r tsconfig-paths/register --compiler-options '{\"module\":\"CommonJS\"}' scripts/generate-og-images.ts",
"build:icons": "ts-node -r tsconfig-paths/register --compiler-options '{\"module\":\"CommonJS\"}' scripts/generate-icons.ts",
"build": "yarn build:og && next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx,md}\"",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx,md}\"",
"format:staged": "git diff --cached --name-only --diff-filter=ACMR | grep -E \"\\.(ts|tsx|js|jsx|json|css|md)$\" | xargs -r prettier --write",
"validate-operators": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' scripts/validate-operators.ts",
"prepare": "husky"
},
"dependencies": {
"@obolnetwork/obol-ui": "1.1.19",
"@radix-ui/react-tooltip": "1.2.8",
"@stitches/react": "1.2.8",
"html-to-image": "1.11.13",
"next": "15.5.15",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-is": "19.2.3"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@types/jest": "29.5.14",
"@types/node": "20.19.39",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"eslint": "8.57.1",
"eslint-config-next": "15.5.15",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"js-yaml": "4.1.1",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"sharp": "0.33.5",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3",
"zod": "3.25.76"
},
"resolutions": {
"@obolnetwork/obol-ui/react": "19.2.3",
"@obolnetwork/obol-ui/react-dom": "19.2.3"
},
"packageManager": "yarn@1.22.22"
}