-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "executioner",
"version": "1.0.0",
"description": "Online judge",
"main": "server.js",
"scripts": {
"test": "export NODE_ENV=test && mocha Tests --timeout 10000 --exit",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kriticalflare/executioner.git"
},
"author": "Krithik Pramod Suvarna",
"license": "ISC",
"bugs": {
"url": "https://github.com/kriticalflare/executioner/issues"
},
"homepage": "https://github.com/kriticalflare/executioner#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"bull": "^3.29.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb-memory-server": "^7.5.1",
"mongoose": "^6.0.12",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"nanoid": "^3.1.30",
"nodemailer": "^6.7.0",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.1.3",
"supertest": "^6.1.6"
}
}