-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.85 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
{
"name": "burnstoves",
"version": "1.0.0",
"private": true,
"homepage": "/",
"scripts": {
"dev": "next dev",
"build": "cross-env NODE_ENV=production next build",
"analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "cross-env NODE_ENV=production eslint '**/*.{js,jsx,ts,tsx,sass,scss}'",
"lint-staged": "lint-staged",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,sass,scss}'",
"test": "jest -c test/jest.config.js",
"test:watch": "jest -c test/jest.config.js --watch",
"test:coverage": "jest -c test/jest.config.js --coverage",
"export": "cross-env NODE_ENV=production next build && next export",
"depcheck": "depcheck"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^2.5.1",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^2.8.8",
"@react-hook/intersection-observer": "^3.1.1",
"@vercel/analytics": "^0.1.11",
"bezier-js": "^6.1.0",
"dayjs": "^1.11.7",
"eslint-config-next": "^13.2.3",
"focus-visible": "^5.2.0",
"framer-motion": "^10.1.0",
"graphql": "^16.6.0",
"html-react-parser": "^3.0.9",
"next": "^13.2.3",
"next-compose-plugins": "^2.2.1",
"next-seo": "^5.4.0",
"nuka-carousel": "^5.4.1",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-animated-number": "^0.4.4",
"react-dom": "^18.2.0",
"react-hook-form": "^7.29.0",
"react-icons": "^4.6.0",
"react-input-mask": "^2.0.4",
"react-intersection-observer": "^8.33.1",
"react-intersection-observer-hook": "^2.0.4",
"react-player": "^2.11.2",
"sass": "^1.50.0",
"slick-carousel": "^1.8.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@next/bundle-analyzer": "^12.1.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@types/apollo-upload-client": "^17.0.2",
"@types/bezier-js": "^4.1.0",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-input-mask": "^3.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"next-optimized-images": "^2.6.2",
"nock": "^13.2.4",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"webp-loader": "^0.6.0"
},
"engines": {
"npm": ">=6.14.14",
"node": ">=14.17.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}