-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "@reshaped/blog",
"version": "0.4.0",
"description": "Personal blog starter kit built on top of Next.js and Reshaped",
"license": "MIT",
"keywords": [
"react",
"nextjs",
"blog",
"reshaped",
"personal website",
"static site generator"
],
"bugs": {
"url": "https://github.com/formaat-design/reshaped-blog-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formaat-design/reshaped-blog-starter.git"
},
"bin": {
"reshaped-blog": "bin/cli.mjs"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:themes": "reshaped theming --output ./src/themes",
"start": "next start",
"lint": "next lint",
"release": "yarn publish --access public",
"example:dev": "yarn --cwd ./example dev",
"example:build": "yarn --cwd ./example build",
"example:start": "yarn --cwd ./example start"
},
"dependencies": {
"@reshaped/blog": "^0.4.1",
"@types/mdx": "2.0.11",
"@types/node": "20.11.19",
"@types/react": "18.2.56",
"@types/react-dom": "18.2.19",
"commander": "12.0.0",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"execa": "8.0.1",
"fs-extra": "11.2.0",
"gray-matter": "4.0.3",
"next": "14.1.0",
"next-mdx-remote": "4.4.1",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "2.0.10",
"reshaped": "2.9.5",
"shiki": "1.1.3",
"typescript": "5.3.3"
},
"devDependencies": {
"resolve-tspaths": "^0.8.18"
}
}