forked from gabriel-horvat/nftlabs-sdk-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "thirdweb-sdk-example",
"version": "1.0.0",
"repository": "[email protected]:nftlabs/nftlabs-sdk-example.git",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.2",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@types/react": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"mkdirp": "^1.0.4",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@3rdweb/sdk": "^1.12.0",
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@usedapp/core": "^0.5.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"ethers": "^5.4.7",
"framer-motion": "^5",
"next": "^12.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}