-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 854 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 854 Bytes
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
{
"name": "school-backend-proxy",
"version": "1.0.0",
"description": "Complete backend server for School Platform - AI proxy, email notifications, SMS, Supabase integration",
"main": "backend-proxy-example.js",
"scripts": {
"start": "node backend-proxy-example.js",
"dev": "nodemon backend-proxy-example.js",
"test:features": "node run-playwright-tests.js"
},
"keywords": [
"ai",
"proxy",
"groq",
"openai",
"email",
"sms",
"supabase"
],
"author": "",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.5.1",
"stripe": "^14.21.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"nodemon": "^3.0.1",
"playwright": "^1.49.0"
},
"engines": {
"node": ">=18.0.0"
}
}