-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 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
{
"name": "blog",
"version": "1.0.0",
"description": "This project is a copy of my personal website and this time, using NextJs framework",
"main": "index.js",
"repository": "https://github.com/Rizialdi/Blog.git",
"author": "Diack Rasselio Abou",
"license": "MIT",
"scripts": {
"dev": "next",
"start": "node server.js",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "0.1.8",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-flash-messages": "^0.1.1",
"express-session": "^1.17.0",
"front-matter": "^3.0.2",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.1.6",
"next-routes": "^1.4.2",
"nodemailer": "^6.4.2",
"nodemon": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^4.2.2",
"standard": "^14.3.4",
"universal-cookie": "^4.0.2"
}
}