-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 748 Bytes
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
{
"name": "example",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@koa/router": "^10.1.1",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"next": "12.1.6",
"nextjs-koa-api": "^2.0.0",
"on-finished": "^2.4.1",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/node": "^17.0.30",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"eslint": "^8.14.0",
"eslint-config-next": "12.3.7",
"typescript": "^4.6.4"
}
}