generated from justinTsugranes/boilerplate_javascript-next-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.88 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
{
"name": "next-tailwind-boilerplate",
"description": "A customizable Next.js and Tailwind boilerplate",
"author": "Justin Tsugranes",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"format": "prettier --ignore-path .gitignore --write .",
"start": "next start",
"export": "next build && next export",
"lint": "next lint",
"test": "jest --watch",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"type-check": "tsc"
},
"dependencies": {
"@fontsource/inter": "4.5.2",
"@heroicons/react": "^1.0.6",
"@mdx-js/loader": "^2.1.2",
"@next/mdx": "^12.2.4",
"@tailwindcss/typography": "^0.5.4",
"classnames": "^2.3.1",
"date-fns": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"gray-matter": "^4.0.3",
"next": "latest",
"next-remote-watch": "1.0.0",
"next-seo": "^5.5.0",
"react": "latest",
"react-dom": "latest",
"react-is": "^17.0.2",
"react-router-dom": "^6.3.0",
"reading-time": "1.3.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-citation": "^0.4.0",
"rehype-katex": "^6.0.2",
"rehype-preset-minify": "6.0.0",
"rehype-prism-plus": "^1.1.3",
"rehype-slug": "^5.0.0",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"remark-mdx": "^2.1.2",
"styled-components": "^5.2.3",
"swr": "^1.3.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@next/bundle-analyzer": "12.1.4",
"@svgr/webpack": "^6.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@types/react": "^18.0.17",
"@types/styled-components": "5.1.25",
"autoprefixer": "^10.4.8",
"cypress": "^10.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"next-remote-watch": "^1.0.0",
"next-sitemap": "^3.1.17",
"postcss": "^8.4.16",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.1.8",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"license": "MIT"
}