stack/examples/e-commerce/package.json
Konstantin Wohlwend ad8d918014
Some checks are pending
Runs E2E API Tests / build (20.x) (push) Waiting to run
Runs E2E API Tests / build (22.6) (push) Waiting to run
Lint & build / lint_and_build (20.x) (push) Waiting to run
Lint & build / lint_and_build (22.6) (push) Waiting to run
TOC Generator / TOC Generator (push) Waiting to run
chore: update package versions
2024-08-29 22:12:57 -07:00

29 lines
661 B
JSON

{
"name": "@stackframe/e-commerce-demo",
"version": "2.5.27",
"private": true,
"scripts": {
"dev": "next dev --port 8111",
"build": "next build",
"start": "next start --port 8111",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"clean": "rimraf .next && rimraf node_modules"
},
"dependencies": {
"@stackframe/stack": "workspace:*",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"rimraf": "^5.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"typescript": "^5"
}
}