4
0
forked from crowetic/commerce

Initial setup

This commit is contained in:
Luis Alvarez
2020-09-21 14:54:16 -05:00
parent ef1717b74f
commit 6d16303215
8 changed files with 4540 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "e-comm-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^9.5.4-canary.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"swr": "^0.3.3"
},
"resolutions": {
"webpack": "^5.0.0-beta.30"
},
"devDependencies": {
"@types/react": "^16.9.49",
"typescript": "^4.0.3"
}
}