forked from near-examples/guest-book-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 936 Bytes
/
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
{
"name": "guest-book",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@keypom/fastauth": "^0.1.6",
"@near-wallet-selector/bitte-wallet": "^8.9.12",
"@near-wallet-selector/core": "^8.9.11",
"@near-wallet-selector/here-wallet": "^8.9.11",
"@near-wallet-selector/meteor-wallet": "^8.9.12",
"@near-wallet-selector/mintbase-wallet": "^8.9.12",
"@near-wallet-selector/modal-ui": "^8.9.11",
"@near-wallet-selector/my-near-wallet": "^8.9.11",
"bootstrap": "^5",
"bootstrap-icons": "^1.11.3",
"near-api-js": "^4.0.3",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"resolutions": {
"near-api-js": "4.0.3"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "14.2.3"
}
}