-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.79 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.79 KB
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
{
"name": "arism-wallet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .ts,.tsx .",
"dev:node1": "cd ../arism-node && yarn start:dev:node1",
"dev:node2": "cd ../arism-node && yarn start:dev:node2",
"dev:node3": "cd ../arism-node && yarn start:dev:node3",
"dev:backend": "concurrently \"yarn dev:node1\" \"yarn dev:node2\" \"yarn dev:node3\"",
"dev:backend:derivation": "concurrently \"yarn dev:node1\" \"yarn dev:node2\""
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@svgr/webpack": "^8.1.0",
"@toruslabs/eccrypto": "^5.0.4",
"@vercel/analytics": "^1.1.2",
"arism-sdk": "^1.0.15",
"bip39": "^3.1.0",
"clsx": "^2.1.1",
"device-detector-js": "^3.0.3",
"eslint-plugin-tailwindcss": "^3.17.4",
"framer-motion": "^10.18.0",
"json-stable-stringify": "^1.1.1",
"keccak": "^3.0.4",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongoose": "^8.5.1",
"next": "14.1.0",
"next-auth": "^4.24.7",
"next-page-transitions": "^1.0.0-beta.2",
"nextjs-toploader": "^1.6.12",
"postcss-nesting": "^12.1.0",
"postcss-preset-env": "^9.5.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-redux": "^9.1.0",
"react-scroll-progress-bar": "^1.1.13",
"react-slick": "^0.30.2",
"redux-logger": "^3.0.6",
"secp256k1": "^5.0.0",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^2.4.0",
"timeago.js": "^4.0.2",
"usehooks-ts": "^3.0.1",
"uuid": "^9.0.1",
"web3": "^4.4.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/elliptic": "^6.4.18",
"@types/json-stable-stringify": "^1.0.36",
"@types/keccak": "^3.0.4",
"@types/node": "^20",
"@types/nprogress": "^0.2.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/redux-logger": "^3.0.13",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"daisyui": "^4.12.10",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}