-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.55 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
{
"name": "moonbeam-raffle",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0",
"typecheck": "tsc --noEmit",
"test:watch": "jest --watch",
"test": "jest ./src",
"format": "prettier -w ./src",
"format:check": "prettier -c ./src",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install",
"hardhat": "cd hardhat && yarn install && yarn compile && cd ..",
"pipeline": "yarn lint:fix && yarn typecheck && yarn test && yarn build"
},
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@typechain/ethers-v5": "^10.1.0",
"@usedapp/core": "^1.2.2",
"clsx": "^1.2.1",
"ethers": "^5.7.0",
"flowbite": "^1.5.3",
"flowbite-react": "^0.1.11",
"next": "^12.2.5",
"react": "^18.2.0",
"react-confetti-explosion": "^2.0.2",
"react-countdown": "^2.3.5",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-toastify": "^9.0.8",
"tailwind-merge": "^1.5.1",
"typechain": "^8.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.3.1",
"@tailwindcss/forms": "^0.5.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/react": "^18.0.19",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*!(test).{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --check"
],
"hardhat/contracts/**/*.sol": [
"prettier --check"
],
"src/**/*.{js,jsx,ts,tsx}": [
"yarn test"
],
"src/**/*.{json,css,scss,md}": [
"prettier --check"
]
}
}