-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
124 lines (124 loc) · 3.61 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@map3xyz/supercharge",
"version": "1.3.2",
"private": false,
"types": "dist/types.d.ts",
"main": "dist/index.js",
"css": "dist/index.css",
"files": [
"dist"
],
"targets": {
"main": {
"source": "./src/index.tsx",
"optimize": true,
"includeNodeModules": true
},
"css": {
"source": "./src/index.css",
"optimize": true
},
"global": {
"source": "./src/index.tsx",
"outputFormat": "global"
},
"types": {
"source": "src/index.tsx"
}
},
"@parcel/transformer-css": {
"cssModules": {
"dashedIdents": true
}
},
"scripts": {
"build": "rm -rf dist && parcel build",
"dev": "parcel src/index.html --dist-dir output",
"lint": "eslint \"{**/*,*}.{ts,tsx}\"",
"lint:fix": "eslint \"{**/*,*}.{ts,tsx}\" --fix",
"codegen": "graphql-codegen --config codegen.ts",
"test": "jest"
},
"resolutions": {
"typescript": "~4.7",
"typescript:comment": "see https://github.com/parcel-bundler/parcel/issues/8419"
},
"devDependencies": {
"@commitlint/config-conventional": "17.3.0",
"@graphql-codegen/cli": "2.13.7",
"@graphql-codegen/client-preset": "1.1.0",
"@graphql-codegen/typescript-react-apollo": "3.3.5",
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-inline-string": "2.7.0",
"@parcel/transformer-sass": "2.7.0",
"@parcel/transformer-svg-react": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/eth-url-parser": "1.0.0",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/parser": "5.38.1",
"assert": "2.0.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-hooks": "0.4.3",
"eslint-plugin-jest-dom": "4.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.7",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-tailwindcss": "3.6.1",
"eslint-plugin-testing-library": "5.9.1",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"https-browserify": "1.0.0",
"husky": "8.0.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-fetch-mock": "3.0.3",
"jest-svg-transformer": "1.0.0",
"os-browserify": "0.3.0",
"parcel": "2.7.0",
"postcss": "8.4.16",
"postcss-modules": "4.3.0",
"prettier": "2.2.1",
"prettier-plugin-tailwindcss": "0.1.13",
"process": "0.11.10",
"querystring-es3": "0.2.1",
"semantic-release": "19.0.5",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"ts-jest": "29.0.5",
"typescript": "4.8.4",
"url": "0.11.0",
"util": "0.12.5"
},
"dependencies": {
"@apollo/client": "3.7.0",
"@fortawesome/fontawesome-free": "6.1.2",
"@map3xyz/components": "0.1.60",
"@supabase/supabase-js": "2.2.2",
"@web3modal/standalone": "2.4.1",
"@walletconnect/ethereum-provider": "2.7.7",
"bip21": "2.0.3",
"colord": "^2.9.3",
"eth-testing": "1.10.0",
"eth-url-parser": "1.0.4",
"ethers": "5.7.2",
"framer-motion": "7.5.3",
"graphql": "16.6.0",
"i18next": "^22.4.9",
"i18next-http-backend": "^2.1.1",
"lottie-web": "^5.10.2",
"posthog-js": "1.51.5",
"qrcode.react": "3.1.0",
"react": "18.2.0",
"react-device-detect": "2.2.2",
"react-dom": "18.2.0",
"react-i18next": "^12.1.5",
"react-intersection-observer": "9.4.0",
"tailwindcss": "3.1.8"
}
}