-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.74 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
{
"name": "bims",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 80",
"lint": "next lint"
},
"dependencies": {
"@nextui-org/react": "^2.4.8",
"@openzeppelin/contracts": "^5.0.2",
"@react-aria/ssr": "^3.9.5",
"@react-stately/data": "^3.11.4",
"bootstrap": "^5.3.3",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"firebase": "^10.12.2",
"framer-motion": "^11.0.25",
"jsonwebtoken": "^9.0.2",
"next": "^14.2.3",
"next-themes": "^0.3.0",
"react": "^18",
"react-data-table-component": "^7.6.2",
"react-dom": "^18",
"react-hook-form": "^7.52.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.1.0",
"react-select": "^5.8.0",
"styled-components": "^6.1.12",
"swr": "^2.2.5",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"ethers": "^5.7.2",
"hardhat": "^2.22.10",
"postcss": "^8",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"sass": "^1.77.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindConfig": "tailwind.config.ts",
"tailwindAttributes": [
"base",
"img",
"tab",
"tabList",
"wrapper"
],
"tailwindFunctions": [
"clsx",
"tw"
],
"tailwindPreserveWhitespace": false,
"tailwindPreserveDuplicates": false
}
}