-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"export": "next build && next export -o ./docs",
"serve": "npm run export && firebase serve -o 0.0.0.0 --only hosting"
},
"dependencies": {
"base64url": "^3.0.1",
"date-fns": "^2.16.1",
"firebase": "^9.6.10",
"gray-matter": "^4.0.2",
"js-sha256": "^0.9.0",
"next": "^12.0.9",
"next-build-id": "^3.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"remark": "^14.0.2",
"remark-html": "^15.0.1"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-standard": "^4.0.1",
"sass": "^1.52.3",
"styled-components": "^5.3.3",
"typescript": "^4.3.2"
}
}