-
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) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 860 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": "ap-python-server",
"version": "1.0.0",
"description": "Web server for AP Python students to write, run, and submit code with AI tutoring",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"java",
"education",
"grading",
"ai-tutor"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.30.0",
"bcrypt": "^6.0.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-session": "^1.17.3",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"session-file-store": "^1.5.0",
"socket.io": "^4.6.1",
"sqlite3": "^5.1.7",
"winston": "^3.19.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}