-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.23 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
{
"name": "leda-web",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export -o _static",
"start": "next start",
"format": "prettier --ignore-path .prettierignore --write \"**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"format:check": "prettier . --ignore-path .gitignore --check",
"lint": "next lint",
"lint:fix": "yarn format & next lint --dir src",
"test": "jest --passWithNoTests",
"test:staged": "jest --bail --findRelatedTests --watchAll=false --passWithNoTests",
"clean-cache": "rimraf .next",
"clean": "rimraf node_modules .next",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^2.9.10",
"@popperjs/core": "2.10.2",
"@reduxjs/toolkit": "1.8.5",
"@types/react-icons": "^3.0.0",
"@types/react-slick": "^0.23.10",
"axios": "^0.27.2",
"bootstrap": "5.1.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.6",
"ethers": "5.7.1",
"framer-motion": "6.2.6",
"gray-matter": "4.0.3",
"marked": "4.0.12",
"next": "12.3.0",
"next-themes": "0.1.1",
"nft.storage": "^7.0.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-bootstrap": "2.1.1",
"react-countdown": "2.3.2",
"react-countup": "6.1.1",
"react-dom": "17.0.2",
"react-files": "^3.0.0-alpha.3",
"react-hook-form": "7.27.1",
"react-icons": "^4.6.0",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "8.33.1",
"react-modal-video": "1.2.8",
"react-parallax-tilt": "1.7.34",
"react-portal": "4.2.2",
"react-range": "1.8.12",
"react-redux": "8.0.2",
"react-scroll": "1.8.6",
"react-slick": "0.28.1",
"react-spinners": "^0.13.6",
"react-switch": "^7.0.0",
"react-tagsinput": "^3.20.0",
"react-toastify": "8.2.0",
"react-tsparticles": "2.3.1",
"react-use": "17.3.2",
"remark": "14.0.2",
"remark-html": "15.0.1",
"sal.js": "0.8.5",
"sass": "1.45.0",
"swr": "^1.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/logger": "^5.7.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@types/jest": "^29.2.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-tagsinput": "^3.19.9",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"eslint": "8.22.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "1.5.0",
"husky": "8.0.1",
"jest": "29.0.3",
"jest-environment-jsdom": "29.0.3",
"lint-staged": "13.0.3",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-jest": "^29.0.3",
"typescript": "4.8.3"
}
}