forked from BanklessDAO/bankless-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "nextjs-template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@babel/core": "^7.18.5",
"@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/clear-sans": "^4.5.3",
"@hookform/resolvers": "^2.8.8",
"cypress": "^10.3.1",
"cypress-image-snapshot": "^4.0.1",
"framer-motion": "^5.6.0",
"lodash": "^4.17.21",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.25.3",
"react-icons": "^4.3.1",
"react-slick": "^0.29.0",
"rgt": "^1.0.7",
"sharp": "^0.31.3",
"slick-carousel": "^1.8.1",
"ulid": "^2.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^5.0.5",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"typescript": "4.5.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix",
"jest -b --silent --findRelatedTests"
]
}
}