-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 KB
/
package.json
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
{
"name": "@pythnetwork/insights",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "20"
},
"scripts": {
"build": "next build",
"fix:format": "prettier --write .",
"fix:lint:eslint": "eslint --fix .",
"fix:lint:stylelint": "stylelint --fix 'src/**/*.scss'",
"pull:env": "[ $CI ] || VERCEL_ORG_ID=team_BKQrg3JJFLxZyTqpuYtIY0rj VERCEL_PROJECT_ID=prj_TBkf9EyQjQF37gs4Vk0sQKJj97kE vercel env pull",
"start:dev": "next dev --port 3003",
"start:prod": "next start --port 3003",
"test:format": "prettier --check .",
"test:lint:eslint": "eslint .",
"test:lint:stylelint": "stylelint 'src/**/*.scss'",
"test:types": "tsc"
},
"dependencies": {
"@clickhouse/client": "catalog:",
"@phosphor-icons/react": "catalog:",
"@pythnetwork/app-logger": "workspace:*",
"@pythnetwork/client": "catalog:",
"@pythnetwork/component-library": "workspace:*",
"@pythnetwork/fonts": "workspace:*",
"@pythnetwork/hermes-client": "workspace:*",
"@pythnetwork/known-publishers": "workspace:*",
"@pythnetwork/next-root": "workspace:*",
"@react-hookz/web": "catalog:",
"@solana/web3.js": "catalog:",
"bs58": "catalog:",
"clsx": "catalog:",
"cryptocurrency-icons": "catalog:",
"dnum": "catalog:",
"motion": "catalog:",
"next": "catalog:",
"next-themes": "catalog:",
"nuqs": "catalog:",
"react": "catalog:",
"react-aria": "catalog:",
"react-dom": "catalog:",
"recharts": "catalog:",
"superjson": "catalog:",
"swr": "catalog:",
"zod": "catalog:",
"zod-validation-error": "catalog:"
},
"devDependencies": {
"@cprussin/eslint-config": "catalog:",
"@cprussin/jest-config": "catalog:",
"@cprussin/prettier-config": "catalog:",
"@cprussin/tsconfig": "catalog:",
"@pythnetwork/staking-sdk": "workspace:",
"@svgr/webpack": "catalog:",
"@types/jest": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"autoprefixer": "catalog:",
"eslint": "catalog:",
"jest": "catalog:",
"postcss": "catalog:",
"prettier": "catalog:",
"sass": "catalog:",
"stylelint": "catalog:",
"stylelint-config-standard-scss": "catalog:",
"typescript": "catalog:",
"vercel": "catalog:"
}
}