-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.63 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
{
"name": "pascal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "ts-node test/main.ts",
"lint": "next lint",
"marketMake": "ts-node -r tsconfig-paths/register src/cli/marketMake.ts",
"initializeOutcomeTokens": "ts-node -O '{\"module\": \"commonjs\"}' -r tsconfig-paths/register src/cli/initializeOutcomeTokens.ts",
"binaryOptionTests": "ts-node -O '{\"module\": \"commonjs\"}' -r tsconfig-paths/register src/context/Anchor/spl-binary-options",
"settleMarket": "ts-node -O '{\"module\": \"commonjs\"}' -r tsconfig-paths/register src/cli/settleMarket.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@metaplex-foundation/js": "^0.16.1",
"@monaco-protocol/admin-client": "^2.0.0",
"@monaco-protocol/client": "3.0.0-rc1",
"@native-to-anchor/buffer-layout": "^0.1.0",
"@project-serum/anchor": "^0.25.0",
"@project-serum/borsh": "^0.2.5",
"@pythnetwork/client": "^2.7.1",
"@reduxjs/toolkit": "^1.8.5",
"@solana-mobile/wallet-adapter-mobile": "^0.9.0",
"@solana/spl-token": "^0.2.0",
"@solana/spl-token-swap": "^0.1.3",
"@solana/wallet-adapter-base": "^0.9.16",
"@solana/wallet-adapter-react": "^0.15.18",
"@solana/wallet-adapter-react-ui": "^0.9.16",
"@solana/wallet-adapter-wallets": "^0.18.5",
"@solana/web3.js": "^1.59.0",
"@tanstack/react-table": "^8.7.9",
"@vercel/analytics": "^0.1.5",
"chakra-ui-steps": "^1.7.4",
"chart.js": "^3.9.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"formik": "^2.2.9",
"framer-motion": "^7.6.1",
"fs": "^0.0.1-security",
"moment": "^2.29.4",
"mongodb": "^4.12.1",
"next": "^13.1.6",
"next-connect": "^0.13.0",
"nextjs-progressbar": "^0.0.14",
"node-cron": "^3.0.2",
"p-limit": "^4.0.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.1",
"react-use-measure": "^2.1.1",
"react-use-websocket": "^4.2.0",
"react-wrap-balancer": "^0.4.0",
"recharts": "2.1.9",
"styled-components": "^4.1.1",
"swr": "^1.3.0",
"three": "^0.137.0",
"unfetch": "^4.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "18.0.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"eslint": "8.18.0",
"eslint-config-next": "^13.1.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.5.4"
}
}