-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@sentry/nextjs": "7.39.0",
"animejs": "^3.2.1",
"contentful": "beta-v10",
"cors": "^2.8.5",
"gsap": "^3.11.1",
"next": "13.2.1",
"next-seo": "^5.15.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.2",
"zod": "^3.20.6"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/animejs": "^3.1.5",
"@types/cors": "^2.8.13",
"@types/mailchimp__mailchimp_marketing": "^3.0.6",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"autoprefixer": "^10.4.12",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "4.9.5"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"prefer-const": "error",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
]
}
}
}