This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 2.52 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
{
"name": "haqq-faucet-app",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/haqq-network/faucet-app.git"
},
"source": "src/index.html",
"engines": {
"node": ">= 16",
"yarn": ">= 3"
},
"packageManager": "yarn@3.2.2",
"scripts": {
"clean": "rm -rf ./dist && mkdir ./dist",
"copy-static": "cp -r ./public/. ./dist",
"start": "yarn parcel",
"build": "yarn parcel build",
"test": "yarn jest",
"test:dev": "yarn test --watch --onlyChanged",
"lint": "yarn eslint src/ --ext ts,js,tsx,jsx,mjs,cjs --color",
"format": "yarn prettier --write '**/*.{ts,js,tsx,jsx,cjs,mjs,css,json,md,mdx,html,yaml,yml}'"
},
"dependencies": {
"@auth0/auth0-react": "1.10.2",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@metamask/jazzicon": "2.0.0",
"@metamask/onboarding": "1.0.1",
"@sentry/react": "7.12.1",
"@sentry/tracing": "7.12.1",
"clsx": "1.2.1",
"ethers": "5.7.0",
"gh-pages": "4.0.0",
"react": "18.2.0",
"react-countdown": "2.3.2",
"react-dom": "18.2.0",
"react-loader-spinner": "5.3.4",
"react-router-dom": "6.3.0",
"react-spinners": "0.13.4",
"react-success-indicator": "1.1.0",
"reaptcha": "1.12.1",
"ress": "5.0.2",
"wagmi": "0.6.5",
"web3": "1.7.5"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/eslint": "8.4.6",
"@types/events": "3.0.0",
"@types/jest": "29.0.1",
"@types/node": "18.7.16",
"@types/postcss-import": "14.0.0",
"@types/prettier": "2.7.0",
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"assert": "2.0.0",
"buffer": "6.0.3",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"events": "3.3.0",
"https-browserify": "1.0.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.0.3",
"os-browserify": "0.3.0",
"parcel": "2.7.0",
"postcss": "8.4.16",
"postcss-import": "15.0.0",
"postcss-preset-env": "7.8.1",
"prettier": "2.7.1",
"process": "0.11.10",
"querystring-es3": "0.2.1",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"tailwindcss": "3.1.8",
"typescript": "4.8.3",
"url": "0.11.0"
}
}