-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "zkwallet",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@mysten/dapp-kit": "^0.10.3",
"@mysten/sui.js": "^0.48.0",
"@mysten/zklogin": "^0.3.9",
"@next/third-parties": "^14.1.0",
"@noble/hashes": "^1.3.3",
"@reduxjs/toolkit": "^2.0.1",
"@tanstack/react-query": "^5.14.1",
"jose": "^5.1.3",
"next": "14.0.4",
"next-redux-wrapper": "^8.1.0",
"node-jose": "^2.2.0",
"notistack": "^3.0.1",
"query-string": "^8.1.0",
"react": "^18",
"react-dom": "^18",
"react-lazy-load-image-component": "^1.6.0",
"react-redux": "^9.0.3",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/node-jose": "^1.1.13",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-lazy-load-image-component": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"base64-loader": "^1.0.0",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.1",
"typescript": "^5"
}
}