-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.26 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
{
"name": "html-as-json-response-bug-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "yarn i18n && next build",
"redis": "redis-server",
"start": "next start",
"lint": "next lint",
"extract:i18n": "formatjs extract '{pages,components}/**/*.{js,ts,tsx}' --format simple --id-interpolation-pattern '[sha512:contenthash:base64:6]' --out-file translations/locales/en-us.json",
"compile:i18n": "formatjs compile-folder --ast --format simple translations/locales translations/compiled-locales",
"i18n": "yarn extract:i18n && yarn compile:i18n",
"slicemachine": "start-slicemachine"
},
"dependencies": {
"@emotion/cache": "^11.10.1",
"@emotion/is-prop-valid": "^1.2.0",
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.94",
"@mui/material": "^5.10.0",
"@mui/utils": "^5.9.3",
"@prismicio/client": "^6.6.4",
"@prismicio/helpers": "^2.3.3",
"@prismicio/next": "^0.1.3",
"@prismicio/react": "^2.4.4",
"@prismicio/slice-simulator-react": "^0.2.0",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"connect-redis": "^6.1.3",
"ioredis": "^5.2.2",
"lightgallery": "^2.5.0",
"lodash.chunk": "^4.2.0",
"next": "12.2.5",
"next-seo": "^5.5.0",
"next-session": "^4.0.5",
"nextjs-google-analytics": "^2.0.0",
"prismic-cli": "^4.2.2",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-image-magnify": "^2.7.4",
"react-intl": "^6.0.5",
"react-share": "^4.4.0",
"react-youtube": "^9.0.3",
"sharp": "^0.30.7",
"swiper": "^8.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@formatjs/cli": "^5.0.7",
"eslint": "8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-jsconfig": "^1.1.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"prettier": "^2.7.1",
"slice-machine-ui": "^0.4.2"
}
}