This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
95
96
97
98
99
100
101
{
"name": "magicswap",
"description": "The automated market maker of the Treasure ecosystem",
"homepage": "https://magicswap.lol",
"contributors": [
{
"name": "rappzula",
"email": "rappzula@treasure.lol"
},
{
"name": "Just Cheese",
"email": "jcheese@treasure.lol"
}
],
"license": "MIT",
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"deploy": "fly deploy --remote-only",
"test": "vitest",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"codegen": "graphql-codegen -r dotenv/config",
"lint": "prettier --write 'app/**/{*.ts,*.tsx}' && eslint --fix --no-error-on-unmatched-pattern 'app/**/{*.ts,*.tsx}'",
"prepare": "husky"
},
"dependencies": {
"@blocto/rainbowkit-connector": "^0.2.4",
"@coinbase/wallet-sdk": "^3.7.1",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.16",
"@rainbow-me/rainbowkit": "^1.3.2",
"@react-aria/i18n": "^3.5.1",
"@react-aria/numberfield": "^3.3.0",
"@react-stately/numberfield": "^3.2.0",
"@remix-run/node": "^2.4.1",
"@remix-run/react": "^2.4.1",
"@remix-run/serve": "^2.4.1",
"@sushiswap/tines": "^1.0.11",
"@visx/curve": "^2.1.0",
"@visx/gradient": "^2.10.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.12.2",
"date-fns": "^3.0.6",
"decimal.js-light": "^2.5.1",
"graphql": "^16.6.0",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"isbot": "^5.0.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.3.0",
"react-virtualized-auto-sizer": "^1.0.6",
"remix-utils": "^7.4.0",
"tailwind-merge": "^2.2.0",
"tiny-invariant": "^1.3.1",
"viem": "^1.20.3",
"wagmi": "^1.4.12"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-graphql-request": "^6.1.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@remix-run/dev": "^2.4.1",
"@remix-run/eslint-config": "^2.4.1",
"@remix-run/server-runtime": "^2.4.1",
"@tailwindcss/forms": "^0.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.13.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.1.4",
"typescript": "^5.1.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "4.2.2",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"app/**/{*.ts,*.tsx}": "npm run lint"
}
}