forked from passportxyz/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.23 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
{
"name": "@gitcoin/passport-app",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "NEXT_PUBLIC_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) next dev -p 3000",
"export": "NEXT_PUBLIC_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) next build && next export",
"build": "NEXT_PUBLIC_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) next build",
"prod-start": "NEXT_PUBLIC_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) next start",
"clean": "rimraf node_modules && rimraf .next",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint && prettier --write .",
"test": "jest"
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@datadog/browser-logs": "^4.11.2",
"@datadog/browser-rum": "^4.11.2",
"@didtools/pkh-ethereum": "^0.0.3",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@ethersproject/providers": "^5.6.4",
"@gitcoin/passport-database-client": "^1.0.0",
"@gitcoin/passport-identity": "^1.0.0",
"@gitcoin/passport-platforms": "^1.0.0",
"@gitcoin/passport-types": "^1.0.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.17",
"@popperjs/core": "^2.11.7",
"@self.id/framework": "0.3.3",
"@web3-onboard/core": "^2.3.2",
"@web3-onboard/injected-wallets": "^2.0.12",
"@web3-onboard/ledger": "^2.1.4",
"@web3-onboard/react": "^2.2.2",
"@web3-onboard/walletconnect": "^2.0.5",
"@web3-onboard/walletlink": "^2.0.4",
"broadcast-channel": "^4.11.0",
"did-session": "^1.0.0",
"ethers": "^6.3.0",
"framer-motion": "^6.3.0",
"next": "latest",
"node-fetch": "^3.2.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-gtm-module": "^2.0.11",
"react-popper": "^2.3.0",
"react-router-dom": "^6.3.0",
"ts-debounce": "^4.0.0"
},
"devDependencies": {
"@ceramicnetwork/common": "^2.2.1",
"@glazed/did-datastore-model": "^0.2.0",
"@glazed/types": "^0.2.0",
"@next/eslint-plugin-next": "^12.1.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/node": "17.0.4",
"@types/react-dom": "^17.0.2",
"@types/react-gtm-module": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^28.0.0",
"base64-js": "^1.5.1",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-localstorage-mock": "^2.4.26",
"jest-mock-extended": "^2.0.5",
"postcss": "^8.4.5",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.1",
"react-qr-code": "^2.0.7",
"tailwindcss": "^3.0.7",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.0",
"typescript": "4.5.4"
},
"resolutions": {
"csstype": "3.0.10",
"**/@types/react": "17.0.2",
"leveldown": "6.1.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3"
}
}