-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.31 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "pow.co",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"build:contract": "npx scrypt-cli compile",
"deploy:contract": "npx ts-node ./scripts/deploy.ts",
"verify:contract": "npx scrypt-cli verify $(cat .scriptHash) ./src/contracts/nextPowCo.ts",
"genprivkey": "npx ts-node ./scripts/privateKey.ts",
"pretest": "npx scrypt-cli compile"
},
"dependencies": {
"@dhaiwat10/react-link-preview": "^1.14.2",
"@emotion/core": "^11.0.0",
"@handcash/handcash-connect": "^0.6.9",
"@next/font": "13.1.1",
"@remirror/core": "^2.0.16",
"@remirror/core-extensions": "^1.0.0",
"@remirror/pm": "^2.0.5",
"@remirror/react": "^2.0.28",
"@remirror/react-editors": "^1.0.32",
"@remirror/styles": "^2.0.5",
"@runonbitcoin/nimble": "^1.0.14",
"@sensible-contract/sensible-web3": "^0.4.1",
"@socialgouv/matomo-next": "^1.6.1",
"@tailwindcss/typography": "^0.5.9",
"@twetch/web3": "gitlab:twetch/web3",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"axios": "^1.2.2",
"bip39": "^3.1.0",
"bitcoin-bap": "^1.3.1",
"boostpow": "^2.0.0-rc1",
"boostpow-button": "^1.2.0",
"bops": "^1.0.1",
"bs58check": "^3.0.1",
"bsocial": "^0.0.1",
"bsv": "^1.5.6",
"delay": "^6.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.1.1",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"jsonwebtoken": "^9.0.0",
"linkify-react": "^4.1.1",
"linkifyjs": "^4.1.0",
"markdown-it": "^13.0.1",
"moment": "^2.29.4",
"next": "^13.4.8",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-code-blocks": "^0.0.9-0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.0",
"react-infinite-scroll-component": "^6.1.0",
"react-intl": "^6.2.5",
"react-markdown-editor-lite": "^1.3.4",
"react-p5": "^1.3.35",
"react-player": "^2.12.0",
"react-remarkable": "^1.1.3",
"react-tooltip": "^5.8.3",
"react-twitter-embed": "^4.0.4",
"react-use-websocket": "^4.3.1",
"react-youtube": "^10.1.0",
"remirror": "^2.0.31",
"scrypt-ts": "^1.3.2",
"simple-data-storage": "^1.0.0",
"slate": "^0.88.1",
"slate-react": "^0.88.2",
"socket.io-client": "^4.6.1",
"stag-relayx": "^0.3.0",
"super-react-gist": "^1.1.0",
"swr": "^2.0.0",
"tailwind-datepicker-react": "^1.4.2",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.3.0",
"@types/markdown-it": "^12.2.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "^10.4.14",
"dotenv": "^10.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
}
}