-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.18 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
{
"name": "boilerplate-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 7777",
"build": "next build",
"start": "node server/index.js",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"cypress": "cypress open"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.5",
"@metamask/eth-sig-util": "^5.0.0",
"@walletconnect/web3-provider": "^1.7.1",
"axios": "^0.27.2",
"browser-bunyan": "^1.8.0",
"bunyan": "^1.8.15",
"chart.js": "^3.9.1",
"ethers": "^5.5.4",
"helmet": "^6.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"next": "12.1.0",
"next-bunyan": "^0.0.1",
"next-logger": "^3.0.1",
"node-sass": "^7.0.3",
"react": "17.0.2",
"react-canvas-confetti": "^1.3.0",
"react-chartjs-2": "^4.3.1",
"react-device-detect": "^2.2.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.10",
"react-gtm-module": "^2.0.11",
"react-icons": "^4.6.0",
"react-moment": "^1.1.2",
"react-toastify": "^8.2.0",
"styled-components": "^5.3.5",
"universal-cookie": "^4.0.4",
"use-breakpoint": "^3.0.3",
"web3": "^1.7.4",
"web3modal": "^1.9.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/cypress": "^1.1.3",
"@types/faker": "^6.6.9",
"@types/node": "17.0.18",
"@types/react": "18.0.1",
"@types/react-gtm-module": "^2.0.1",
"@types/react-slider": "^1.3.1",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.2",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"autoprefixer": "^10.4.2",
"cypress": "^9.5.0",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^4.0.1",
"faker": "^5.5.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "4.5.5"
}
}