-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 2.19 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
{
"name": "portal",
"private": true,
"version": "3.2.0",
"type": "module",
"scripts": {
"build:testnet": "NETWORK_NAME=testnet bash build.sh",
"build:mainnet": "NETWORK_NAME=mainnet bash build.sh",
"build:qa": "NETWORK_NAME=legacy bash build.sh",
"build:portal": "tsc && vite build",
"build:packages": "bun run build:core",
"build:core": "cd packages/core && bun install && bun run build",
"dev": "vite",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"",
"version": "node -e \"console.log(require('./package.json').version);\""
},
"dependencies": {
"@/core": "file:packages/core",
"@mdx-js/rollup": "^2.3.0",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@skalenetwork/metaport": "3.2.0-develop.0",
"@skalenetwork/skale-contracts-ethers-v6": "1.0.1",
"@transak/transak-sdk": "^3.1.1",
"@types/react-copy-to-clipboard": "^5.0.4",
"@vercel/analytics": "^1.0.2",
"embla-carousel-react": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-jazzicon": "^1.0.4",
"react-router-dom": "^6.15.0",
"react-social-icons": "^6.17.0",
"react-transition-group": "^4.4.5",
"siwe": "^2.3.2",
"tslog": "^4.9.3"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.4",
"bun-types": "^1.0.17",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"sass": "^1.65.1",
"typescript": "^5.0.2",
"vite": "^4.4.9",
"vite-plugin-vercel": "^0.2.1"
}
}