-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "subscription-email-analyzer",
"version": "0.1.0",
"description": "CLI tool for analyzing Google Workspace subscription-related emails using Node.js",
"type": "module",
"main": "src/index.js",
"bin": {
"sea": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"api": "node src/server/server.js",
"dev:web": "vite --config frontend/vite.config.js",
"build:web": "vite build --config frontend/vite.config.js",
"lint": "eslint \"src/**/*.js\"",
"reset": "node scripts/reset.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.6.8",
"commander": "^12.1.0",
"better-sqlite3": "^9.6.0",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"google-auth-library": "^9.0.0",
"googleapis": "^131.0.0",
"openai": "^4.56.0",
"p-retry": "^6.2.0",
"recharts": "^2.12.7",
"winston": "^3.11.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^9.9.0",
"vite": "^5.4.8",
"@vitejs/plugin-react": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}