-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 973 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
38
{
"name": "mdinos-net",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:firebase": "next build && next export && firebase emulators:start",
"build": "next build",
"start": "next start",
"prettier": "prettier -w .",
"export": "next export",
"deploy:hosting": "next build && next export && firebase deploy --only hosting",
"deploy:functions": "firebase deploy --only functions"
},
"dependencies": {
"chart.js": "^3.0.0-beta.13",
"date-fns": "^2.19.0",
"firebase": "^8.3.2",
"gray-matter": "^4.0.2",
"next": "^10.0.0",
"prism-themes": "^1.5.0",
"prismjs": "^1.23.0",
"react": "17.0.1",
"react-chartjs-2": "^2.11.1",
"react-dom": "17.0.1",
"remark": "^13.0.0",
"remark-html": "^13.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"prettier": "^2.2.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
}