-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
92 lines (92 loc) · 2.94 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
{
"name": "raydium-frontend",
"version": "2.0.0",
"scripts": {
"dev": "next dev -p 3008",
"build": "next build && next export",
"start": "next start",
"build-analyze": "cross-env ANALYZE=true yarn build",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"check-versions": "yarn ncu",
"mutate-versions": "yarn ncu -u",
"run-misc": "cross-env TS_NODE_PROJECT=tsconfig.commonjs.json yarn ts-node",
"build-ido-json": "yarn run-misc ./misc/build-ido-json.ts",
"prepare": "husky install",
"push-frontend": "git push --force frontend master"
},
"sideEffects": false,
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint"
]
},
"comments": {
"@headlessui/react": "v1.7.5 is ok , but v1.7.6 can prevent input of clmm -> manage position -> add liquitity, but don't know why"
},
"resolutions": {
"@solana/spl-token": "^0.3.7",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.75.0",
"decimal.js": "^10.4.3",
"bn.js": "^5.2.1"
},
"dependencies": {
"@headlessui/react": "1.7.5",
"@heroicons/react": "^2.0.17",
"@raydium-io/raydium-sdk": "1.3.1-beta.50",
"@solana-mobile/mobile-wallet-adapter-protocol": "^2.0.1",
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "^2.0.1",
"@solana-mobile/wallet-adapter-mobile": "^2.0.1",
"@solana/spl-token": "^0.3.7",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.34",
"@solana/wallet-adapter-wallets": "^0.19.17",
"@solana/web3.js": "^1.75.0",
"@solflare-wallet/wallet-adapter": "^1.0.0",
"@uiw/formatter": "^2.0.2",
"@uiw/react-date-input": "^4.21.27",
"@uiw/react-date-picker": "^4.21.27",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"immer": "^10.0.1",
"next": "13.3.1",
"nextjs-progressbar": "^0.0.16",
"rc-slider": "^10.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"recharts": "2.5.0",
"tailwind-merge": "1.8.0",
"tailwindcss": "^3.3.2",
"zustand": "^4.3.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.3.4",
"@types/bn.js": "^5.1.1",
"@types/node": "^18.16.3",
"@types/react": "^18.2.4",
"@types/react-dom": "^18.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"decimal.js": "^10.4.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"next-build-id": "^3.0.0",
"next-global-css": "^1.3.1",
"next-transpile-modules": "^10.0.0",
"npm-check-updates": "^16.10.9",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}