forked from ChangoMan/nextjs-mdx-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.78 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": "nextjs-typescript-mdx-blog",
"author": "@hunterhchang",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@tailwindcss/typography": "^0.5.7",
"date-fns": "^2.29.2",
"gray-matter": "^4.0.3",
"mdx-prism": "^0.3.4",
"next": "^12.3.0",
"next-mdx-remote": "^4.1.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.1",
"@types/node": "^18.7.17",
"@types/react": "^18.0.19",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.9",
"babel-jest": "^29.0.3",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.3",
"jest-watch-typeahead": "^2.2.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"rehype": "^12.0.1",
"rehype-autolink-headings": "6.1.1",
"rehype-code-titles": "1.1.0",
"rehype-prism-plus": "^1.5.0",
"rehype-slug": "5.0.1",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
}
}