-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.32 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
{
"name": "cim-convention-web-next",
"version": "0.1.0",
"private": true,
"scripts": {
"generate-ts-types": "graphql-codegen --config graphql.config.js",
"dev": "concurrently \"next dev\" \"graphql-codegen --watch --config graphql.config.js\"",
"build": "yarn generate-ts-types && next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint --no-cache",
"serve": "next build && next start --port 8000",
"format": "prettier --write --config .prettierrc \"./**/*.{js,jsx,ts,tsx,json,scss,css}\"",
"prepare": "is-ci || husky install && chmod ug+x .husky/*",
"lh": "lighthouse http://localhost:3000 --view"
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@netlify/next": "^1.4.9",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-popover": "^1.0.7",
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide-extension-auto-scroll": "^0.5.3",
"@vis.gl/react-google-maps": "^0.4.2",
"clsx": "^2.0.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"next": "14.0.4",
"next-intl": "^3.3.1",
"next-sitemap": "^4.2.3",
"react": "^18",
"react-datocms": "^4.1.3",
"react-dom": "^18",
"tailwind-merge": "^2.1.0"
},
"devDependencies": {
"@parcel/watcher": "^2.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.5",
"react-signature-canvas": "^1.0.6",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --config .prettierrc \"./**/*.{js,jsx,ts,tsx,json,scss,css}\""
],
"*.{json,md,css,scss}": [
"prettier --write --config .prettierrc \"./**/*.{js,jsx,ts,tsx,json,scss,css}\""
]
}
}