-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
103 lines (103 loc) · 3.04 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
{
"name": "umaverse",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"prepare": "husky install",
"cypress:open": "cypress open",
"test": "jest",
"test:watch": "jest --watch",
"ci": "ts-node cypress/run-ci.ts"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/server": "^11.0.0",
"@emotion/styled": "^11.3.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@heroicons/react": "^1.0.0",
"@reach/dialog": "^0.15.0",
"@sentry/nextjs": "^6.8.0",
"@types/d3-time-format": "^3.0.0",
"@uma/api": "^0.7.0",
"@uma/contracts-frontend": "^0.1.0",
"@uma/contracts-node": "^0.1.0",
"@uma/core": "^2.7.0",
"@visx/axis": "^1.7.0",
"@visx/curve": "^1.7.0",
"@visx/event": "^1.7.0",
"@visx/gradient": "^1.7.0",
"@visx/responsive": "^1.7.0",
"@visx/scale": "^1.7.0",
"@visx/shape": "^1.7.0",
"@visx/tooltip": "^1.7.2",
"axios": "^0.24.0",
"bnc-onboard": "^1.35.2",
"contentful": "^8.4.2",
"cypress": "^8.4.0",
"d3-array": "^2.12.1",
"d3-interpolate": "^2.0.1",
"d3-time-format": "^3.0.0",
"downshift": "^6.1.3",
"ethers": "^5.4.1",
"framer-motion": "^4.1.17",
"luxon": "^1.27.0",
"next": "latest",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-mailchimp-subscribe": "^2.1.3",
"react-markdown": "^6.0.2",
"react-query": "^3.18.1",
"react-table": "^7.6.3",
"remark-breaks": "^3.0.1",
"web3": "1.3.5"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@ethersproject/experimental": "^5.4.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@types/d3-array": "^2.9.0",
"@types/faker": "^5.5.1",
"@types/luxon": "^1.27.1",
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-mailchimp-subscribe": "^2.1.1",
"@types/react-table": "^7.0.29",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@uma/sdk": "^0.4.1",
"babel-jest": "^27.2.3",
"babel-plugin-macros": "^3.0.1",
"cypress": "^8.4.0",
"dotenv": "^10.0.0",
"eslint": "^7.24.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"hardhat": "^2.6.4",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.3",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.2"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}