-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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": "masca-ethcc-workshop-2023",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"postbuild": "next-sitemap --config=next-sitemap.config.js",
"build:docker": "pnpm build",
"dev": "pnpm next dev",
"lint": "pnpm lint:next && pnpm lint:tsc && pnpm lint:prettier && pnpm lint:stylelint",
"lint:fix": "next lint . --fix && prettier . --write",
"lint:next": "next lint",
"lint:prettier": "prettier . --check",
"lint:stylelint": "stylelint \"src/**/*.{css,scss}\"",
"lint:tsc": "tsc -p tsconfig.json --noEmit --incremental false",
"start": "next build && next start"
},
"dependencies": {
"@blockchain-lab-um/masca-connector": "1.2.1",
"@blockchain-lab-um/utils": "^1.2.0",
"@ethersproject/providers": "^5.7.2",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@metamask/detect-provider": "^2.0.0",
"@metamask/providers": "^10.2.0",
"@supabase/supabase-js": "^2.26.0",
"@veramo/core": "^5.2.0",
"@veramo/credential-eip712": "^5.2.0",
"@veramo/credential-w3c": "^5.2.0",
"@veramo/did-manager": "^5.1.2",
"@veramo/did-provider-ethr": "^5.1.2",
"@veramo/did-provider-pkh": "^5.1.2",
"@veramo/did-resolver": "^5.2.0",
"@veramo/key-manager": "^5.1.2",
"@veramo/kms-local": "^5.1.2",
"@vercel/analytics": "^1.0.1",
"@vercel/og": "^0.5.8",
"clsx": "^1.2.1",
"did-resolver": "^4.1.0",
"encoding": "^0.1.13",
"ethers": "^6.6.2",
"ethr-did-resolver": "^8.0.0",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"uniqolor": "^1.1.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"eslint": "8.44.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"next-sitemap": "^4.1.8",
"postcss": "8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"prettier-plugin-tailwindcss": "^0.3.0",
"supabase": "^1.75.3",
"typescript": "5.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.0"
}
}