Skip to content

Commit e404933

Browse files
Fix CI/CD pipeline: Add missing root package.json
- Added package.json in repository root with required dependencies (dotenv, firebase) - This resolves the npm install failure in GitHub Actions workflow - Dependencies match the setup commands for CLAUDE_SESSION_STARTUP.js - Fixes ENOENT error: Could not read package.json in CI/CD pipeline
1 parent 4feb5ee commit e404933

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "node-out-master",
3+
"version": "1.0.0",
4+
"description": "Storm Damage Payment Portal",
5+
"main": "CLAUDE_SESSION_STARTUP.js",
6+
"scripts": {
7+
"start": "node CLAUDE_SESSION_STARTUP.js",
8+
"test": "echo \"Error: no test specified\" && exit 1"
9+
},
10+
"dependencies": {
11+
"dotenv": "^16.0.0",
12+
"firebase": "^10.0.0"
13+
},
14+
"keywords": [
15+
"storm",
16+
"damage",
17+
"payment",
18+
"portal"
19+
],
20+
"author": "",
21+
"license": "ISC"
22+
}

0 commit comments

Comments
 (0)