-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.7 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
{
"name": "next-router",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-watch",
"local": "next dev",
"build": "next build && next export && npm run lint:build",
"lint:build": "mv out/_next out/assets && sed -i 's/\\/_next/\\/assets/g' out/**.html",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@reduxjs/toolkit": "^1.9.5",
"@types/crypto-js": "^4.1.1",
"@types/js-cookie": "^3.0.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "20.5.1",
"@types/react": "18.2.20",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"bip39": "^3.1.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"eslint": "8.47.0",
"eslint-config-next": "13.4.19",
"ethers": "^6.7.1",
"heroicons": "^2.0.18",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"next": "13.4.19",
"npm-watch": "^0.11.0",
"postcss": "8.4.28",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^6.15.0",
"react-toastify": "^9.1.3",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
},
"watch": {
"build": {
"patterns": [
".",
"components/**",
"styles/**",
"pages/**",
"public/**"
],
"ignore": [
"out",
"node_modules",
".next"
],
"extensions": [
"js",
"json",
"lock",
"tsx",
"ts",
"svg"
]
}
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2"
}
}