-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
43
44
45
46
{
"name": "my-small-writing-blog",
"license": "MIT",
"version": "1.2.9",
"author": "Domin-MND",
"private": true,
"packageManager": "yarn@3.5.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\""
},
"engines": {
"node": ">=17.0.0"
},
"dependencies": {
"@pondorasti/remark-img-links": "^1.0.8",
"firebase": "^9.20.0",
"next": "13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-highlight": "^6.0.0",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"sharp": "^0.32.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@ikota/vanilla-extract": "^1.0.2",
"@types/node": "^18.15.13",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/next-plugin": "^2.1.2",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"ikota": "^1.0.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}