forked from stellar/soroban-example-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "wasm-demo-next",
"version": "0.1.0",
"private": true,
"scripts": {
"setup": "./initialize.sh",
"reset": "rm -rf .soroban ; npm run setup",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-dialog": "1.0.2",
"@soroban-react/contracts": "^3.4.0",
"@soroban-react/core": "^3.2.1",
"@soroban-react/freighter": "^3.2.1",
"@soroban-react/types": "^3.2.1",
"@stellar/freighter-api": "^1.3.1",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"humanize-duration": "^3.27.3",
"moment": "^2.29.4",
"next": "12.1.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"soroban-client": "^0.2.1"
},
"devDependencies": {
"@types/humanize-duration": "^3.27.1",
"@types/node": "17.0.30",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"typescript": "4.6.4"
},
"engines": {
"node": "17",
"npm": "8"
}
}