forked from sigp/siren
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"description": "This is an open-source User Interface for the Lighthouse Ethereum Beacon Node and Validator Client.",
"license": "APACHE2",
"author": "Sigma Prime",
"homepage": "./",
"name": "Siren",
"version": "2.0.0-rc1",
"private": true,
"dependencies": {
"@hookform/resolvers": "^2.9.8",
"@leodeslf/perlin-noise": "^1.1.2",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "15.0.6",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/react": "18.3.3",
"@uiw/react-textarea-code-editor": "^2.1.1",
"autoprefixer": "^10.4.19",
"axios": "^0.27.2",
"chart.js": "^4.2.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.4.5",
"ethers": "^6.13.1",
"eventsource": "^2.0.2",
"express": "^4.18.3",
"framer-motion": "^11.2.10",
"i18next": "^21.9.2",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "13",
"nuka-carousel": "^6.0.1",
"react": "^18.2.0",
"react-d3-speedometer": "^1.0.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.35.0",
"react-i18next": "^11.18.6",
"react-query": "^3.39.3",
"react-toastify": "^9.0.8",
"react-tooltip": "^5.7.2",
"recoil": "^0.7.5",
"rodal": "^2.0.0",
"svg-identicon": "^1.0.1",
"swr": "^2.2.5",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.1.8",
"tailwindcss-scoped-groups": "^2.0.0",
"typescript": "5.5.2",
"yup": "^0.32.11"
},
"scripts": {
"dev": "node siren.js",
"build": "next build",
"start": "NODE_ENV=production node siren.js",
"test": "jest",
"cleanup": "prettier --write .",
"coverage": "jest --coverage",
"lint": "next lint",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"prettier": "3.2.5",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.5"
}
}