-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.79 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@fortawesome/fontawesome-free": "^6.1.2",
"@popperjs/core": "^2.11.5",
"@types/d3": "^7.4.0",
"axios": "^0.27.2",
"cloudinary-build-url": "^0.2.4",
"clsx": "^1.2.1",
"d3": "^7.8.3",
"date-fns": "^2.29.3",
"dayjs": "^1.11.3",
"esbuild": "^0.14.53",
"faunadb": "^4.6.0",
"lodash": "^4.17.21",
"mdx-bundler": "^9.0.1",
"next": "^12.2.1",
"next-themes": "^0.2.0",
"popper.js": "^1.16.1",
"qs": "^6.11.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-image-lightbox": "^5.1.4",
"react-intersection-observer": "^9.4.3",
"swr": "^2.0.3",
"tailwind-merge": "^1.3.0",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/lodash": "^4.14.182",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.27",
"@types/react-copy-to-clipboard": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-router-mock": "^0.7.5",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.4.2",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}