-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "coderdan-blog",
"private": true,
"description": "A simple starter to get up and developing quickly with Next.js",
"license": "MIT",
"version": "0.1.0",
"author": "@cinnabarhorse",
"scripts": {
"dev": "next",
"nowDev": "env-cmd -f .env now dev",
"develop": "yarn dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "yarn build && yarn export"
},
"dependencies": {
"@now/node": "^1.8.5",
"bootstrap": "^4.5.3",
"gray-matter": "^4.0.2",
"mailchimp-api-v3": "^1.14.0",
"next": "^9.5.5",
"node-glob": "^1.2.0",
"raw-loader": "^3.1.0",
"react": "^16.14.0",
"react-bootstrap": "^1.4.0",
"react-burger-menu": "^3.0.6",
"react-dom": "^16.14.0",
"react-markdown": "^5.0.2",
"react-syntax-highlighter": "^12.2.1",
"webpack": "^4.44.2"
},
"devDependencies": {
"@types/node": "^13.13.31",
"env-cmd": "^10.1.0",
"prettier": "^1.19.1",
"typescript": "^3.9.7"
},
"keywords": [
"next"
],
"repository": {
"type": "git",
"url": "https://github.com/cinnabarhorse/coderdan-blog"
}
}