-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
97 lines (97 loc) · 3.16 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
{
"name": "spect-tribes",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"eslint": "eslint . --ext .tsx --quiet",
"eslint:fix": "eslint . --ext .tsx --fix",
"prepare": "husky install",
"test": "jest --watch ./__tests__/specs",
"unit-test-ci": "jest ./__tests__/specs",
"integration": "synpress run --configFile ./__tests__/e2e/synpress.json --record --key a34ad347-df93-4b2e-820e-3cedbedbd35c",
"e2e-ci": "start-server-and-test dev http://localhost:3000 integration",
"coverage": "jest --collectCoverage -- ./__tests__/specs"
},
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"dependencies": {
"@date-io/date-fns": "^2.13.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.1",
"@mui/lab": "^5.0.0-alpha.77",
"@mui/material": "^5.4.1",
"@mui/styles": "^5.4.1",
"@mui/x-date-pickers": "^5.0.0-alpha.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@octokit/rest": "^18.12.0",
"@openzeppelin/contracts": "^4.6.0",
"@rari-capital/solmate": "^6.4.0",
"@walletconnect/web3-provider": "^1.7.1",
"@web3auth/web3auth": "^0.9.0",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.4",
"ethers": "^5.6.4",
"magic-sdk": "^8.1.0",
"match-sorter": "^6.3.1",
"moralis": "^1.3.1",
"next": "12.0.10",
"react": "17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-contenteditable": "^3.3.6",
"react-dom": "17.0.2",
"react-editor-js": "^2.0.6",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.26.0",
"react-hot-toast": "^2.2.0",
"react-moralis": "^1.3.1",
"react-tiny-link": "^3.6.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@next/eslint-plugin-next": "^12.1.5",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@synthetixio/synpress": "^1.2.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/node": "17.0.14",
"@types/react": "17.0.39",
"@types/react-beautiful-dnd": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.3.1",
"eslint-plugin-ui-testing": "^2.0.1",
"hardhat": "^2.9.6",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-cucumber": "^3.0.1",
"prettier": "^2.6.2",
"sass": "^1.49.11",
"start-server-and-test": "^1.14.0",
"typescript": "4.5.5"
},
"resolutions": {
"@types/react": "17.0.39"
}
}