-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.84 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": "trustflow-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"predev": "npm run codegen",
"build": "npm run codegen && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"setup": "./initialize.sh ${NETWORK:-futurenet} && npm install",
"clean": "rm -rf .next .soroban .soroban-example-dapp",
"reset": "npm run clean && npm run setup",
"build:contracts": "./target/bin/soroban contract build",
"bindings:crowdfund": "./target/bin/soroban contract bindings typescript --wasm ./target/wasm32-unknown-unknown/release/soroban_crowdfund_contract.wasm --id $(cat ./.soroban-example-dapp/crowdfund_id) --output-dir ./.soroban-example-dapp/crowdfund-contract --network $(cat ./.soroban-example-dapp/network) --overwrite",
"bindings:abundance": "./target/bin/soroban contract bindings typescript --wasm ./target/wasm32-unknown-unknown/release/abundance_token.wasm --id $(cat ./.soroban-example-dapp/abundance_token_id) --output-dir ./.soroban-example-dapp/abundance-token --network $(cat ./.soroban-example-dapp/network) --overwrite",
"bindings": "npm run bindings:crowdfund && npm run bindings:abundance",
"codegen": "node scripts/generate-contract-bindings.js",
"codegen:validate": "npm run codegen && git diff --exit-code shared/contracts-gen/",
"convert:assets": "node scripts/convert-to-webp.js"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-dialog": "1.0.2",
"@stellar/freighter-api": "^1.5.1",
"@stellar/stellar-sdk": "^13.3.0",
"@tanstack/react-virtual": "^3.14.7",
"@uiw/react-md-editor": "^4.1.1",
"axios": "^0.27.2",
"bigint-conversion": "^2.4.1",
"humanize-duration": "^3.27.3",
"moment": "^2.29.4",
"next": "^13.4.4",
"next-intl": "^4.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.78.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"soroban-client": "1.0.0-beta.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@types/humanize-duration": "^3.27.1",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jest": "^29.5.14",
"@types/node": "17.0.30",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.5.0",
"eslint": "^8.14.0",
"eslint-config-next": "^13.3.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"postcss": "^8.5.14",
"sharp": "0.33.5",
"tailwindcss": "^3.4.19",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "5.1.3"
},
"engines": {
"node": ">=18.14.2",
"npm": ">=9.5.0"
}
}