28 lines
606 B
JSON
28 lines
606 B
JSON
|
|
{
|
||
|
|
"name": "puffin-app-server",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Backend server for Puffin App - Stripe checkout and carbon offset processing",
|
||
|
|
"main": "index.js",
|
||
|
|
"type": "module",
|
||
|
|
"scripts": {
|
||
|
|
"start": "node index.js",
|
||
|
|
"dev": "node --watch index.js",
|
||
|
|
"init-db": "node config/database.js"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"stripe",
|
||
|
|
"carbon-offset",
|
||
|
|
"express"
|
||
|
|
],
|
||
|
|
"author": "",
|
||
|
|
"license": "ISC",
|
||
|
|
"dependencies": {
|
||
|
|
"stripe": "^17.5.0",
|
||
|
|
"express": "^4.21.2",
|
||
|
|
"cors": "^2.8.5",
|
||
|
|
"dotenv": "^16.4.7",
|
||
|
|
"better-sqlite3": "^11.8.1",
|
||
|
|
"axios": "^1.6.7"
|
||
|
|
}
|
||
|
|
}
|