forked from colinhacks/nextjs-react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 740 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 740 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
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"serve": "serve -l tcp://localhost:8089 -s out/",
"type-check": "tsc"
},
"dependencies": {
"@types/react-router-dom": "latest",
"@commercelayer/sdk": "latest",
"next": "^12.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "latest"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^16.9.4",
"typescript": "latest"
},
"resolutions": {
"@types/react": "<18.0.0",
"@types/react-dom": "<18.0.0"
},
"license": "MIT"
}