-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 896 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": "test-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"style": "yarn add sriracha-ui && next dev",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"gray-matter": "^4.0.2",
"marked": "^1.1.0",
"moment": "^2.27.0",
"next": "^9.4.4",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^12.2.1",
"sriracha-ui": "^0.7.2",
"styled-components": "^5.1.1"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.7"
}
}