-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"name": "notefull-theme",
"version": "1.0.0",
"author": {
"name": "danpacho",
"url": "https://github.com/danpacho"
},
"description": "Minimal blog theme, built with NextJs",
"keywords": [
"blog",
"nextJs",
"simple"
],
"license": "MIT",
"scripts": {
"dev": "next-remote-watch ./blog/",
"seo": "ts-node -r tsconfig-paths/register --project tsconfig.node.json ./scripts/seo.ts",
"next:build": "next build",
"next:lint": "next lint",
"lint": "eslint '**/*.{ts,tsx}'",
"svg": "npx @svgr/cli src/components/_icons --out-dir src/components/_icons --typescript",
"build": "pnpm next:build && pnpm seo",
"start": "next start",
"post": "post-generator",
"analyze": "ANALYZE=true pnpm next:build",
"prettier": "prettier '**/*.{js,ts,tsx,json,mdx}' --check",
"prettier:fix": "prettier '**/*.{js,ts,tsx,json,mdx}' --write",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@builder.io/partytown": "^0.8.0",
"next-themes": "^0.2.1",
"mdx-bundler": "^9.2.1",
"next": "13.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindest": "2.0.1"
},
"devDependencies": {
"@types/mdx": "^2.0.5",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^17.0.45",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/unist": "^2.0.6",
"@danpacho/post-generator": "^1.2.14",
"autoprefixer": "^10.4.14",
"esbuild": "^0.13.15",
"eslint": "^8.40.0",
"eslint-config-next": "13.4.3",
"eslint-config-prettier": "^8.8.0",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"image-size": "^1.0.2",
"lint-staged": "^13.2.2",
"next-remote-watch": "^2.0.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"rehype-katex": "^6.0.3",
"rehype-prism-plus": "^1.5.1",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.32.1",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "5.0.4",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2"
}
}