-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
{
"name": "alephim-fullstack-dapp-example",
"description": "alephim-fullstack-dapp-example",
"version": "0.0.1",
"repository": "https://github.com/philogicae/alephim-fullstack-dapp-example",
"private": false,
"author": "@philogicae",
"license": "MIT",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"serve": "serve aleph-im/api/static",
"lint": "next lint",
"pip-install": "./aleph-im/scripts/pip-install.sh",
"pip-build": "./aleph-im/scripts/pip-build.sh",
"pip-upload": "./aleph-im/scripts/pip-upload.sh",
"dev-api": "./aleph-im/scripts/dev-api.sh",
"deploy": "./aleph-im/scripts/deploy-no-pip.sh",
"deploy-with-pip": "./aleph-im/scripts/deploy-with-pip.sh",
"set-domain": "./aleph-im/scripts/set-domain.sh"
},
"dependencies": {
"@tanstack/react-query": "^5.29.0",
"connectkit": "^1.7.3",
"next": "14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.3",
"viem": "2.x",
"wagmi": "^2.5.19"
},
"devDependencies": {
"@types/node": "^20.12.6",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4"
}
}