-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 942 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
39
{
"name": "app-router",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "contentlayer build && next build"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@types/node": "20.10.4",
"@types/react": "18.2.43",
"@types/react-dom": "18.2.17",
"contentlayer": "^0.3.4",
"eslint": "8.55.0",
"eslint-config-next": "14.0.4",
"next": "^14.0.4",
"next-contentlayer": "0.3.4",
"next-redux-wrapper": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^9.0.4",
"rehype-highlight": "^7.0.0",
"rehype-pretty-code": "^0.12.1",
"rehype-slug": "^6.0.0",
"sass": "^1.69.5",
"shiki": "^0.14.7",
"styled-components": "^6.1.1",
"typescript": "5.3.3"
},
"overrides": {
"next-contentlayer": {
"next": "14.0.4"
}
}
}