-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
109 lines (109 loc) · 3.44 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
{
"name": "template-marketing-webapp-nextjs",
"description": "",
"private": true,
"version": "0.0.1",
"engines": {
"node": ">=18",
"npm": "Please use Yarn"
},
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"prepare": "husky install",
"type-check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate:init": "ctf-migrate init",
"migrate:content-model": "ctf-migrate up -a",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint-fix": "yarn lint --fix",
"graphql-codegen:generate": "graphql-codegen -r dotenv/config --config codegen.ts",
"graphql-codegen:watch": "graphql-codegen --watch -r dotenv/config --config codegen.ts",
"setup": "./bin/setup.sh"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"src/**/*.{json,js,ts,jsx,tsx}": [
"prettier --write"
]
},
"license": "MIT",
"dependencies": {
"@contentful/live-preview": "^4.5.14",
"@contentful/rich-text-react-renderer": "^15.12.1",
"@contentful/rich-text-types": "^15.12.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.9",
"@mui/styles": "^5.10.9",
"@next/bundle-analyzer": "^12.3.0",
"@svgr/webpack": "^6.3.1",
"@tanstack/react-query": "^4.3.9",
"clsx": "^1.2.1",
"dotenv": "^16.0.1",
"graphql": "^16.5.0",
"intersection-observer": "^0.12.2",
"lodash": "^4.17.21",
"next": "12.3.1",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^12.0.1",
"next-pwa": "^5.6.0",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-kawaii": "^0.17.0",
"react-transition-group": "^4.4.5",
"rehype-parse": "^8.0.4",
"rehype-react": "^7.1.1",
"remark-breaks": "^3.0.2",
"styled-jsx": "^5.0.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.19.1",
"@graphql-codegen/cli": "^2.12.1",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/near-operation-file-preset": "^2.4.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-react-query": "^4.0.1",
"@tanstack/react-query-devtools": "^4.12.0",
"@types/imagesloaded": "^4.1.2",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.15",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.3",
"circular-dependency-plugin": "^5.2.2",
"contentful-import": "^9.4.34",
"eslint": "8.22.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.0",
"i18next": "^21.9.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"react-i18next": "^11.18.6",
"typescript": "4.8.4"
},
"resolutions": {
"**/trim": "^1.0.0",
"**/trim-newlines": "^3.0.1",
"**/glob-parent": "^5.1.2"
}
}