forked from QuantumLogicsLabs/PolyCode-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.48 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
45
46
47
48
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"db:setup": "node scripts/mongodb-setup.js",
"db:test": "node scripts/test-mongodb-connection.js",
"curriculum:seed": "node scripts/seed-numbered-curriculum.js",
"curriculum:seed:force": "node scripts/seed-numbered-curriculum.js --force",
"curriculum:consolidate": "node scripts/consolidate-language-data.js",
"curriculum:consolidate:dry": "node scripts/consolidate-language-data.js --dry-run",
"prompts:export-drive": "node scripts/export-prompts-to-drive.js",
"prompts:export-dry": "node scripts/export-prompts-to-drive.js --dry-run",
"drive:oauth-setup": "node scripts/google-drive-oauth-setup.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chokidar": "^5.0.0",
"compression": "^1.7.4",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^7.4.1",
"fs-extra": "^11.3.4",
"googleapis": "^172.0.0",
"highlight.js": "^11.11.1",
"jsonwebtoken": "^9.0.3",
"marked": "^17.0.4",
"mongoose": "^9.6.2",
"multer": "^2.2.0",
"node-cron": "^4.2.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}