forked from ntk148v/blog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 911 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
{
"name": "arnaud-valensi-blog",
"private": true,
"description": "Arnaud Valensi's blog",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"deploy": "yarn build && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"import-notion-posts": "dotenv -- node ./bin/get-blog-posts.js"
},
"dependencies": {
"@emotion/core": "10.0.35",
"dotenv-flow": "^3.2.0"
},
"devDependencies": {
"@notionhq/client": "^0.4.13",
"dotenv-cli": "3.2.0",
"gh-pages": "3.1.0",
"node-fetch": "2",
"prettier": "2.1.0",
"rimraf": "^3.0.2",
"slugify": "^1.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/eveningcafe.github.io/eveningcafe.github.io"
}
}