Adds missing standard artifacts: - README.md (if missing) - AGENTS.md (AI agent contract) - PLAN.md (current sprint) - STATUS.md (where we are) - DEVELOPMENT.md (dev workflow) - DEPLOYMENT.md (deploy procedure) - TESTING.md (test strategy) - DECISIONS.md (ADR index + templates) - .github/CODEOWNERS - .github/workflows/ci.yml Preserves all existing artifacts. Refs: RugMunchMedia/fleet-template
17 lines
407 B
JSON
17 lines
407 B
JSON
{
|
|
"name": "pry-shopify-app",
|
|
"version": "1.0.0",
|
|
"description": "Shopify app for Pry — import competitor products with one click",
|
|
"main": "server/server.js",
|
|
"scripts": {
|
|
"start": "node server/server.js",
|
|
"dev": "nodemon server/server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.0",
|
|
"@shopify/shopify-api": "^11.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.0"
|
|
}
|
|
}
|