-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2 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
{
"name": "stakecore",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "yarn@1.22.22",
"homepage": "stakecore.org",
"scripts": {
"dev": "vite",
"build": "vite build",
"clean": "vite clean",
"lint": "eslint .",
"preview": "vite preview",
"----------- openapi -----------------------": "",
"openapi-fix": "sed -i \"s|BASE: *'',|BASE: 'https://backend.stakecore.org',|\" ./src/backendApi/core/OpenAPI.ts",
"openapi-gen": "yarn openapi -i ./openapi.json -o ./src/backendApi && yarn openapi-fix",
"----------- github pages deploy -----------": "",
"build-all": "yarn && yarn build && echo stakecore.org > dist/CNAME",
"deploy": "yarn build-all && gh-pages -d dist --no-history --nojekyll"
},
"dependencies": {
"@nivo/core": "^0.99.0",
"@nivo/line": "^0.99.0",
"@remixicon/react": "^4.2.0",
"bech32": "^2.0.0",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"ethers": "^6.13.5",
"framer-motion": "^11.3.24",
"react": "^19.2.3",
"react-cookie": "^8.0.1",
"react-dom": "^19.2.3",
"react-fast-marquee": "^1.6.5",
"react-router": "7.13.0",
"react-router-dom": "7.13.0",
"react-slick": "^0.31.0",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.30.0",
"slick-carousel": "^1.8.1",
"spinners-react": "^1.0.11",
"swiper": "^12.0.3",
"swr": "^2.3.6",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@metamask/providers": "^22.1.1",
"@types/classnames": "^2.3.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.9",
"gh-pages": "^6.3.0",
"globals": "^17.1.0",
"openapi-typescript": "^7.6.1",
"openapi-typescript-codegen": "^0.29.0",
"sass-embedded": "^1.93.2",
"vite": "^7.3.1"
}
}