-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.8 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
{
"name": "soa-nft-marketplace-frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"dev": "next dev",
"build": "next build",
"start": "next start",
"buildGraph": "yarn run graphclient build --fileType js && echo throws error for ts on its own generated file",
"prod": "next build && next start",
"buildImage": "docker build -t soa-nft-marketplace-frontend $(for i in `cat .env.local`; do out+=\"--build-arg $i \" ; done; echo $out;out=\"\") .",
"docker": "docker run -p 3000:3000 soa-nft-marketplace-frontend"
},
"devDependencies": {
"@graphprotocol/client-cli": "^2.2.20",
"@graphprotocol/graph-ts": "0.29.3",
"@metamask/providers": "^10.2.1",
"@types/node": "18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"ethers-typescript-typings": "^0.0.4",
"matchstick-as": "^0.5.2",
"next": "13.2.4",
"postcss": "^8.4.21",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"tslib": "^2.4.1",
"typescript": "5.0.2",
"wagmi": "^0.12.2"
},
"type": "module",
"dependencies": {
"@graphprotocol/graph-cli": "0.48",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@wagmi/connectors": "^0.3.18",
"tailwindcss": "^3.3.2",
"daisyui": "^3.0.3",
"fs": "^0.0.1-security",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-use": "^17.4.0",
"usehooks-ts": "^2.9.1",
"web3": "^1.9.0"
}
}