-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 910 Bytes
/
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
{
"name": "foresry-starter-blog-next",
"private": true,
"description": "A simple starter to get up and developing quickly with Forestry & Next",
"license": "MIT",
"version": "0.1.0",
"author": "@kendallstraut",
"scripts": {
"dev": "next src",
"build": "next build src",
"start": "next start src",
"export": "next export src",
"deploy": "yarn build && yarn export",
"forestry-preview": "next src -p 8080 -H 0.0.0.0"
},
"dependencies": {
"gray-matter": "^4.0.2",
"next": "^9.0.2",
"node-glob": "^1.2.0",
"raw-loader": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.1.0",
"webpack": "^4.37.0"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"keywords": [
"next",
"forestry"
],
"repository": {
"type": "git",
"url": "https://github.com/kendallstrautman/starter-blog-next"
}
}