forked from guildxyz/guild.xyz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.97 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.97 KB
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": "guildxyz",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "next lint",
"lint-fix": "eslint --fix . --ext .ts,.tsx,.js,.jsx",
"cypress": "dotenv -e .env.local -- synpress run --configFile cypress.json --config supportFile='cypress/support/index.js',pluginsFile='cypress/plugins/index.js' -b chromium",
"cypress:mobile": "dotenv -e .env.local -- synpress run --configFile cypress.json --config supportFile='cypress/support/index.js',pluginsFile='cypress/plugins/index.js,viewportWidth=375,viewportHeight=667' --env guildName='Cypress Mobile Gang',guildUrlName='cypress-mobile-gang',dcInvite='https://discord.gg/G6VWkWJrzp',tgId='-1001689086791' -b chromium",
"cypress:record": "dotenv -e .env.local -e .env.development.local -- synpress run --record --configFile cypress.json --config supportFile='cypress/support/index.js',pluginsFile='cypress/plugins/index.js' -b chromium",
"cypress:mobile:record": "dotenv -e .env.local -e .env.development.local -- synpress run --record --configFile cypress.json --config supportFile='cypress/support/index.js',pluginsFile='cypress/plugins/index.js,viewportWidth=375,viewportHeight=667' -b chromium",
"cypress:open": "dotenv -e .env.local -- synpress open --configFile cypress.json",
"cypress:gh": "synpress run --record --configFile cypress.json --config supportFile='cypress/support/index.js',pluginsFile='cypress/plugins/index.js' --group Desktop -b chromium",
"cypress:mobile:gh": "synpress run --record --configFile cypress.json --config supportFile='cypress/support/index.js',pluginsFile='cypress/plugins/index.js,viewportWidth=375,viewportHeight=667' --group Mobile -b chromium"
},
"dependencies": {
"@chakra-ui/react": "^1.8.3",
"@chakra-ui/theme-tools": "^1.3.4",
"@datadog/browser-rum": "^4.3.0",
"@datadog/rum-react-integration": "github:DataDog/rum-react-integration-examples",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/strings": "^5.5.0",
"@lottiefiles/react-lottie-player": "^3.4.1",
"@makerdao/multicall": "^0.12.0",
"@metamask/onboarding": "^1.0.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "6.2.13",
"@web3-react/walletlink-connector": "^6.2.13",
"@xstate/react": "^2.0.0",
"chakra-react-select": "^3.0.4",
"chrome-aws-lambda": "6.0.0",
"color": "^4.2.1",
"confetti-js": "0.0.18",
"events": "^3.3.0",
"fast-json-stable-stringify": "^2.1.0",
"focus-visible": "^5.2.0",
"framer-motion": "^4.1.17",
"js-confetti": "^0.10.2",
"next": "^12.0.10",
"phosphor-react": "^1.4.0",
"puppeteer-core": "6.0.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.4",
"react-hook-form": "^7.27.0",
"react-window": "^1.8.6",
"slugify": "^1.6.5",
"swr": "^1.2.1",
"xstate": "^4.30.1"
},
"devDependencies": {
"@hookform/devtools": "^4.0.2",
"@svgr/webpack": "^6.2.1",
"@synthetixio/synpress": "^1.1.1",
"@types/color": "^3.0.3",
"@types/node": "^16.11.12",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"dotenv-cli": "^5.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"prettier-plugin-jsdoc": "^0.3.30",
"puppeteer": "^13.0.1",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.@(js|jsx|ts|tsx)": "npm run lint-fix",
"*.@(js|jsx|ts|tsx|css|md)": "npm run format"
}
}