-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 3.84 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"scripts": {
"dev": "next dev -p 4081",
"build": "next build",
"start": "next start -p 4081",
"analyze": "BUNDLE_ANALYZE=both yarn build",
"lint": "next lint",
"prettier-fix": "prettier --write .",
"find:unused": "next-unused",
"codegen:graphql": "graphql-codegen --config codegen.yml",
"codegen:contentful": "contentful-typescript-codegen --output lib/contentful/schema.d.ts"
},
"name": "airfit",
"version": "1.0.0",
"sideEffects": false,
"license": "MIT",
"engines": {
"node": "16.x"
},
"dependencies": {
"@apollo/client": "^3.6.2",
"@contentful/rich-text-react-renderer": "^15.1.0",
"@contentful/rich-text-types": "^15.1.0",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.0",
"@mui/icons-material": "^5.6.2",
"@mui/material": "5.6.4",
"@reach/portal": "^0.17.0",
"@react-google-maps/api": "^2.11.9",
"autoprefixer": "^10.4.2",
"body-scroll-lock": "^3.1.5",
"classnames": "^2.2.6",
"contentful": "^8.4.2",
"contentful-management": "^7.31.0",
"envalid": "^7.3.0",
"graphql": "^16.3.0",
"js-cookie": "^2.2.1",
"keen-slider": "^6.6.14",
"lodash.debounce": "^4.0.8",
"lodash.random": "^3.2.0",
"lodash.throttle": "^4.1.1",
"next": "^12.1.6",
"next-compose-plugins": "^2.2.1",
"next-seo": "^4.11.0",
"next-themes": "^0.2.0",
"photoswipe": "^5.2.7",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-hook-form": "^7.13.0",
"react-photoswipe-gallery": "^2.2.0",
"react-swipeable": "^6.2.0",
"react-swipeable-views": "^0.14.0",
"react-window": "^1.8.7",
"react-window-infinite-loader": "^1.0.7",
"sass": "^1.35.1",
"sharp": "^0.29.3",
"tabbable": "^5.1.5",
"tailwind-merge": "^1.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.11",
"@manifoldco/swagger-to-ts": "^2.1.0",
"@next/bundle-analyzer": "^12.1.6",
"@types/body-scroll-lock": "^2.6.1",
"@types/classnames": "^2.2.10",
"@types/cookie": "^0.4.0",
"@types/google.maps": "^3.49.1",
"@types/js-cookie": "^2.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.random": "^3.2.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.14.16",
"@types/photoswipe": "^4.1.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.9",
"@types/react-swipeable-views": "^0.13.1",
"@types/react-transition-group": "^4.4.2",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@types/shopify-buy": "^2.10.5",
"contentful-typescript-codegen": "^3.2.2",
"eslint": "7.31.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"next-unused": "^0.0.3",
"postcss": "^8.4.5",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-nesting": "^7.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"tailwindcss": "^3.0.16",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write",
"git add"
],
"**/*.{md,mdx,json}": [
"prettier --write",
"git add"
]
},
"next-unused": {
"alias": {
"@lib/*": [
"lib/*"
],
"@assets/*": [
"assets/*"
],
"@config/*": [
"config/*"
],
"@components/*": [
"components/*"
],
"@utils/*": [
"utils/*"
]
},
"debug": true,
"include": [
"components",
"lib",
"pages"
],
"exclude": [],
"entrypoints": [
"pages"
]
}
}