-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.72 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
{
"name": "algodex-mailbox",
"version": "1.0.0",
"description": "Algodex Mailbox, a decentralized Algorand token distribution app",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"build-start": "cross-env NODE_ENV=test next build && next start",
"start": "next start",
"lint": "next lint",
"test": "jest",
"coverage": "jest --coverage",
"test-cypress": "cross-env NODE_ENV=test start-server-and-test build-start http://localhost:3000 cypress-run",
"cypress-open": "cypress open",
"cypress-run": "cypress run",
"translate": "node ./bin/translate true"
},
"dependencies": {
"@algodex/algodex-sdk-patch": "^1.0.1",
"@babel/preset-typescript": "^7.18.6",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.8.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.4.4",
"@mui/lab": "^5.0.0-alpha.71",
"@mui/material": "^5.4.4",
"@mui/styles": "^5.5.3",
"@randlabs/myalgo-connect": "^1.1.1",
"@rjsf/core": "^4.0.1",
"@rjsf/material-ui": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"@walletconnect/client": "^1.8.0",
"algorand-walletconnect-qrcode-modal": "^1.8.0",
"algosdk": "^1.16.0",
"axios": "^0.26.0",
"clsx": "^1.1.1",
"convert-csv-to-array": "^1.0.3",
"css-mediaquery": "^0.1.2",
"eventemitter3": "^4.0.7",
"js-big-decimal": "^1.3.4",
"next": "^12.1.0",
"next-i18next": "^10.5.0",
"next-pwa": "^5.4.4",
"polished": "^4.1.3",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-country-flag": "^3.0.2",
"react-dom": "^18.0.0",
"react-is": "^17.0.2",
"react-svg": "^14.0.16",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/jest": "^11.9.1",
"@testing-library/react": "^13.0.0",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"cypress": "^10.9.0",
"cypress-file-upload": "^5.0.8",
"cypress-react-selector": "^2.3.16",
"eslint": "^8.7.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-testing-library": "^5.0.5",
"jest": "^27.5.1",
"next-router-mock": "^0.6.5",
"react-test-renderer": "^18.0.0",
"start-server-and-test": "^1.14.0",
"translate": "^1.4.1",
"typescript": "^4.9.4"
}
}