-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.11 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.11 KB
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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:check": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"format:check": "prettier -c src/**/*.{ts,tsx}",
"format:fix": "prettier -w src/**/*.{ts,tsx}",
"types:check": "tsc --pretty --noEmit --incremental false",
"prepare": "husky install",
"analyze": "cross-env ANALYZE=true next build",
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"dependencies": {
"@stripe/stripe-js": "^1.46.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@typeform/embed-react": "^1.16.0",
"axios": "^1.1.3",
"clsx": "^1.2.1",
"cookies-next": "^2.1.1",
"gray-matter": "^4.0.3",
"next": "^13.0.2",
"next-i18next": "^12.1.0",
"next-seo": "^4.29.0",
"react": "^18.2.0",
"react-circle-flags": "^0.0.18",
"react-device-detect": "^2.1.2",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-intersection-observer": "^8.33.1",
"react-responsive-masonry": "^2.1.7",
"react-toastify": "^9.1.1",
"tailwindcss": "^3.0.13",
"use-count-up": "^3.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.2",
"@types/node": "^17.0.8",
"@types/react": "17.0.38",
"@types/react-responsive-masonry": "^2.1.0",
"@types/react-world-flags": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-next": "^13.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"next-sitemap": "^3.1.30",
"postcss": "^8.4.5",
"prettier": "2.7.1",
"typescript": "4.5.4",
"uuidv4": "^6.2.13"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
]
}
}