-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.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
{
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export && npm run replaceFilePaths",
"replaceFilePaths": "node replacer.js",
"start": "next start",
"test": "mocha"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@ideallabs/etf.js": "^0.1.10-dev",
"@polkadot/api": "^10.9.1",
"@polkadot/api-contract": "^10.9.1",
"@polkadot/extension-dapp": "^0.46.5",
"@polkadot/util": "^12.5.1",
"@polkadot/util-crypto": "^12.5.1",
"@tailwindcss/forms": "^0.5.3",
"chai": "^4.3.6",
"cors": "^2.8.5",
"moment": "^2.29.4",
"moment-timezone": "^0.5.38",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moment": "^1.1.2",
"react-uuid": "^2.0.0",
"reflect-metadata": "^0.1.13",
"replace-in-file": "^7.0.1",
"sha3": "^2.1.4",
"tsyringe": "^4.7.0",
"web3.storage": "^4.5.5"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/cors": "^2.8.12",
"@types/mocha": "^10.0.0",
"@types/node": "18.11.0",
"@types/react": "18.0.25",
"autoprefixer": "^10.4.13",
"chai": "*",
"mocha": "^10.1.0",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.2",
"typescript": "4.8.4"
}
}