forked from bandohq/react-bando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.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
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
{
"name": "react-bando-landing",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"test": "jest",
"test-ci": "jest --ci --runInBand --reporters=jest-junit --collectCoverage=true",
"coverage": "npx jest --coverage",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@intercom/messenger-js-sdk": "^0.0.11",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@sentry/react": "^7.101.0",
"@solana/web3.js": "^1.94.0",
"@tanstack/react-virtual": "^3.2.1",
"@tapfiliate/tapfiliate-js": "^1.0.2",
"D": "^1.0.0",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.6.5",
"date-fns": "^3.3.1",
"firebase": "^10.12.2",
"google-libphonenumber": "^3.2.34",
"i18next": "^23.9.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"magic-sdk": "^22.0.0",
"match-sorter": "^6.3.4",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-currency-input-field": "^3.8.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-i18next": "^14.0.5",
"react-international-phone": "^4.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.2",
"swr": "^2.2.4",
"use-places-autocomplete": "^4.0.1",
"web3-validator": "^2.0.3",
"yup": "^1.3.3"
},
"devDependencies": {
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/autosuggest-highlight": "^3.2.3",
"@types/google-libphonenumber": "^7.4.30",
"@types/jest": "^29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.43",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"cross-fetch": "^4.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"fake-indexeddb": "^5.0.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"jest-localstorage-mock": "^2.4.26",
"jest-watch-typeahead": "^2.2.2",
"msw": "^1.2.2",
"prettier": "^3.1.1",
"resize-observer-polyfill": "^1.5.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-html": "^3.2.1",
"vite-tsconfig-paths": "^4.2.3"
},
"jest-junit": {
"outputDirectory": "test_reports",
"outputName": "jest-junit.xml"
},
"engines": {
"node": "^20.12.2",
"yarn": "^1.22.17"
}
}