-
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.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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": "tutoriaz",
"version": "2.0.0",
"description": "Tutoriaz classroom quiz server",
"main": "server.js",
"scripts": {
"start": "bash start.sh",
"dev": "nodemon server.js",
"setup": "bash setup.sh",
"seed": "node scripts/seedQuizzes.js",
"bootstrap": "node scripts/bootstrapDemo.js",
"test:security": "node test-security.js",
"test:forms": "node test-form-security.js",
"demo:xss": "node demo-xss-protection.js"
},
"dependencies": {
"axios": "^1.12.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-session": "^1.19.0",
"express-validator": "^7.3.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.7.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"sharp": "^0.34.4",
"socket.io": "^4.7.2",
"socket.io-client": "^4.8.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"xss": "^1.0.15"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0"
}
}