-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "crypto-market",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "npm -v"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@coingecko/cryptoformat": "^0.8.0",
"@jup-ag/wallet-adapter": "^0.1.5",
"@nextui-org/react": "^2.2.9",
"@openbook-dex/openbook": "^0.0.9",
"@raydium-io/raydium-sdk": "^1.3.1-beta.47",
"@solana/web3.js": "^1.89.1",
"clsx": "^2.1.0",
"framer-motion": "^10.18.0",
"lightweight-charts": "^4.1.1",
"lodash": "^4.17.21",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18",
"react-use": "^17.4.3",
"simplebar-react": "^3.2.4",
"swr": "^2.2.4",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.16",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"typescript": "^5"
}
}