-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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
77
{
"name": "dweb-ccnp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "next lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@hookform/resolvers": "^2.8.5",
"@openzeppelin/contracts": "^4.4.1",
"@react-hookz/web": "^12.0.4",
"@textile/eth-storage": "^1.0.0",
"@tiptap/extension-bubble-menu": "^2.0.0-beta.54",
"@tiptap/extension-bullet-list": "^2.0.0-beta.26",
"@tiptap/extension-heading": "^2.0.0-beta.25",
"@tiptap/extension-image": "^2.0.0-beta.24",
"@tiptap/extension-link": "^2.0.0-beta.35",
"@tiptap/extension-list-item": "^2.0.0-beta.20",
"@tiptap/extension-paragraph": "^2.0.0-beta.23",
"@tiptap/extension-placeholder": "^2.0.0-beta.46",
"@tiptap/react": "^2.0.0-beta.104",
"@tiptap/starter-kit": "^2.0.0-beta.168",
"axios": "^0.24.0",
"bignumber.js": "^9.0.2",
"ethers": "^5.5.2",
"graphql-tag": "^2.12.6",
"ipfs-http-client": "^55.0.0",
"markdown-it": "^12.3.2",
"multiformats": "^9.5.4",
"next": "^12.0.7",
"next-transpile-modules": "^9.0.0",
"nft.storage": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.22.5",
"react-markdown": "^7.1.1",
"react-select": "^5.2.1",
"react-textarea-autosize": "^8.3.3",
"turndown": "^7.1.1",
"urlcat": "^2.0.4",
"web3": "^1.6.1",
"web3modal": "^1.9.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"autoprefixer": "^10.4.0",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.0",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"tailwindcss": "^3.0.7",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}