-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rfc-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "cp ./node_modules/cryptocurrency-icons/svg/color/* ./public/our_svg/* ./public/svg && next build",
"polkadot-types": "npm run generate:defs && npm run generate:types",
"generate:defs": "npx tsx node_modules/.bin/polkadot-types-from-defs --endpoint ws://127.0.0.1:9944 --input ./src/interfaces --package @types/src/interfaces",
"generate:types": "npx tsx node_modules/.bin/polkadot-types-from-chain --endpoint ws://127.0.0.1:9944 --output ./src/interfaces --package ggx/typegen",
"start": "next start",
"lint": "bun run next_lint && bun run biome_check",
"next_lint": "next lint",
"test": "jest",
"jest-preview": "jest-preview",
"biome_check_errors": "biome check src --apply --diagnostic-level=error",
"biome_check": "biome check --apply src",
"format": "biome format src --write",
"format_check": "biome format src",
"ci_errors": "biome ci src --diagnostic-level=error",
"ci": "biome ci src",
"prepare": "husky"
},
"dependencies": {
"@chain-registry/keplr": "^1.30.0",
"@cosmjs/stargate": "^0.32.2",
"@keplr-wallet/types": "^0.12.58",
"@metamask/sdk-react-ui": "^0.26.3",
"@polkadot/api": "^10.11.2",
"@polkadot/api-contract": "^10.11.2",
"@polkadot/extension-dapp": "^0.46.6",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util": "^12.6.2",
"bignumber.js": "^9.1.2",
"chain-registry": "^1.25.0",
"cryptocurrency-icons": "^0.18.1",
"from-exponential": "^1.1.1",
"next": "14.2.2",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-select": "^5.8.0",
"react-toastify": "^10.0.4",
"sass": "^1.77.6",
"sst": "^3.0.1",
"tailwindcss-safe-area": "^0.4.1",
"web3": "^4.10.0",
"web3-utils": "^4.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@polkadot/dev": "^0.78.8",
"@polkadot/dev-test": "^0.78.8",
"@polkadot/typegen": "^10.11.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preview": "^0.3.1",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-auto-mock": "^3.7.3",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}