-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 3.56 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
94
{
"name": "contract-browser",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "cross-env NEXT_PUBLIC_FLOW_NETWORK=local next dev",
"dev-wait": "npm run dev & wait-on tcp:8888 tcp:8701 tcp:3000",
"dev:local": "concurrently \"npm run flow:emulator\" \"npm run flow:dev-wallet\" \"npm run dev:local:flow\"",
"dev:local:flow": "npm run dev-wait && npm run flow:dev",
"dev:local:deploy": "flow project deploy --network=emulator --update && cross-env NEXT_PUBLIC_FLOW_NETWORK=local npm run dev",
"dev:testnet": "cross-env NEXT_PUBLIC_FLOW_NETWORK=testnet next dev",
"dev:testnet:deploy": "flow project deploy --network=testnet --update && cross-env NEXT_PUBLIC_FLOW_NETWORK=testnet next dev",
"dev:testnet:update": "flow project deploy --network=testnet --update --show-diff",
"dev:mainnet": "cross-env NEXT_PUBLIC_FLOW_NETWORK=mainnet next dev",
"flow:emulator": "flow emulator",
"flow:dev-wallet": "flow dev-wallet",
"test": "jest",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "graphql-codegen --require dotenv/config --config codegen.ts"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@onflow/cadence-docgen": "^0.20.2",
"@onflow/fcl": "1.6.0",
"@onflow/typedefs": "1.1.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.10.7",
"@vercel/analytics": "^1.1.1",
"@vercel/og": "^0.5.20",
"@wooorm/starry-night": "^3.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"encoding": "^0.1.13",
"flowbite-react": "^0.6.4",
"graphql": "^16.8.1",
"gray-matter": "^4.0.3",
"hast-util-to-html": "^9.0.0",
"json-to-pretty-yaml": "^1.2.2",
"lucide-react": "^0.288.0",
"next": "^13.5.6",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-countup": "^6.4.2",
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"urql": "^4.0.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.31",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.3.4",
"wait-on": "^7.2.0"
}
}