-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "swap",
"description": "Widget Preview",
"private": false,
"version": "0.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "next dev",
"build": "next build",
"preview": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@dodoex/widgets": "2.6.11",
"@mui/material": "^5.12.1",
"axios": "^1.4.0",
"bignumber.js": "^9.1.2",
"bufferutil": "^4.0.7",
"clsx": "^2.0.0",
"crypto-js": "^4.1.1",
"lokijs": "^1.5.12",
"next": "^13.4.9",
"pino-pretty": "^10.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.3.1",
"@types/crypto-js": "^4.1.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"typescript": "^4.9.5"
}
}