-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1 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
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "SHOW_PRIVATE_POSTS=false next dev -p 4000",
"build": "next build",
"build-gh-pages": "next build && next export -o docs && touch ./docs/.nojekyll",
"start": "next start",
"lint": "eslint ."
},
"author": "",
"license": "MIT",
"dependencies": {
"config": "^3.3.6",
"next": "^9.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"remark": "~13.0.0",
"remark-extract-frontmatter": "^3.1.0",
"remark-frontmatter": "^3.0.0",
"remark-html": "~13.0.1",
"yaml": "^2.0.0-3"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"prettier": "^2.0.5",
"typescript": "^4.1.3"
}
}