-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.39 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
74
75
76
{
"name": "soroban-dapp-boilerplate",
"private": true,
"version": "0.0.1",
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"scripts": {
"dev": "NODE_ENV=development next dev",
"node": "pnpm run -F contracts node",
"dev-and-node": "concurrently \"pnpm dev\" \"pnpm node\" --names \"Next,Node\" --kill-others",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"type-check": "tsc --pretty --noEmit",
"lint": "prettier . --check && eslint",
"lint:fix": "prettier . --write && eslint --fix",
"lint:format": "prettier . --write",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@soroban-react/chains": "^9.1.3",
"@soroban-react/contracts": "^9.1.3",
"@soroban-react/core": "^9.1.3",
"@soroban-react/freighter": "^9.1.3",
"@soroban-react/types": "^9.1.3",
"@soroban-react/utils": "^9.1.3",
"@soroban-react/wallet-data": "9.0.4",
"@soroban-react/xbull": "^9.1.3",
"@stellar/stellar-sdk": "11.3.0",
"framer-motion": "^10.16.4",
"next": "^13.5.6",
"next-seo": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"sharp": "^0.32.6",
"soroban-client": "1.0.0",
"spinners-react": "^1.0.7",
"use-async-effect": "^2.2.7"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@emotion/babel-plugin": "^11.11.0",
"@testing-library/react": "^14.0.0",
"@types/downloadjs": "^1.4.5",
"@types/node": "^18.18.7",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3",
"prettier-plugin-twin.macro": "^1.0.14",
"tailwindcss": "^3.3.5",
"twin.macro": "^3.4.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
}
}