-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "mira-amm",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"fix:formatting": "npx prettier --write ."
},
"dependencies": {
"@fuels/connectors": "0.36.0",
"@fuels/react": "0.36.0",
"@tanstack/react-query": "^5.50.1",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"fuels": "0.96.1",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"mira-dex-ts": "^1.0.42",
"next": "14.2.15",
"next-query-params": "^5.0.1",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-tooltip": "^5.28.0",
"use-query-params": "^2.2.1",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.23",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}