-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.31 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
{
"name": "mintgate",
"version": "2.0.2",
"engines2": {
"node": ">=12.20"
},
"scripts": {
"analyze": "NODE_OPTIONS=--trace-warnings ANALYZE=true next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build",
"dev2": "cross-env NODE_ENV=development NODE_OPTIONS='--inspect --enable-source-maps' next dev",
"dev": "yarn build:css & concurrently -n NEXT,TS -c magenta,cyan \"yarn dev2\" \"yarn ts --watch\"",
"build": "npm run build:css && next build",
"start": "next start",
"export": "next export",
"build:css": "tailwindcss build -i assets/tailwind.css -o assets/main.css",
"watch:css": "tailwindcss build -i assets/tailwind.css -o assets/main.css --watch",
"__postbuild": "next-on-netlify",
"deploy_old": "vercel",
"deploy": "mv .env.local .env.bak && yarn build && yarn export && netlify deploy -p && mv .env.bak .env.local",
"deploy2": "netlify deploy -p",
"test": "jest",
"selenium": "selenium-side-runner __test__/ux_test_suite.side",
"ux:test": "mocha-headless",
"ts": "tsc --noEmit --incremental --preserveWatchOutput --pretty",
"ts:watch": "yarn ts --watch"
},
"resolutions": {},
"dependencies": {
"@api.video/player-sdk": "^1.2.22",
"@api.video/video-uploader": "^1.0.11",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@mintgate/evm-chains": "^0.5.7",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "^18.11.7",
"@types/react": "^18.0.26",
"@vercel/og": "^0.0.21",
"@web3-onboard/core": "^2.12.1",
"@web3-onboard/injected-wallets": "^2.4.0",
"@web3-onboard/react": "^2.5.3",
"@web3-onboard/walletconnect": "^2.2.2",
"@wert-io/widget-initializer": "^2.0.3",
"animate.css": "^4.1.1",
"autoprefixer": "^10.4.13",
"avvvatars-react": "^0.4.2",
"clsx": "^1.2.1",
"daisyui": "^2.46.0",
"dotenv": "^16.0.3",
"emoji-picker-react": "^4.4.7",
"ethers": "^5.7.1",
"framer-motion": "^8.0.2",
"js-cookie": "^3.0.1",
"moment": "^2.29.4",
"next": "^13.1.1",
"next-pwa": "^5.6.0",
"overmind": "^28.0.2",
"overmind-react": "^29.0.2",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-countdown": "^2.3.5",
"react-csv": "^2.2.2",
"react-custom-properties": "^1.2.0",
"react-datetime": "^3.1.1",
"react-dom": "^18.2.0",
"react-editor-js": "^2.1.0",
"react-hook-form": "^7.41.2",
"react-lazyload": "^3.2.0",
"react-markdown": "^8.0.4",
"react-masonry-css": "^1.0.16",
"react-qr-code": "^2.0.11",
"react-share": "^4.4.1",
"react-table": "^7.8.0",
"react-tilt": "^0.1.4",
"react-use": "^17.4.0",
"swiper": "^8.4.5",
"swr": "^2.0.0",
"tailwind-merge": "^1.8.1",
"tailwindcss": "^3.2.4",
"tailwindcss-text-fill-stroke": "^1.1.2",
"typescript": "^4.9.4"
},
"license": "ISC",
"devDependencies": {
"@next/bundle-analyzer": "^13.1.1",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"jest": "^28.1.2",
"jest-extended": "^2.0.0",
"mocha": "^9.2.2",
"mocha-headless": "^8.0.0",
"prettier": "^2.8.1",
"puppeteer": "^19.4.1",
"selenium-side-runner": "^3.17.0",
"selenium-webdriver": "^4.7.1"
},
"browserslist": [
"chrome >= 73"
]
}