-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.47 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
49
50
51
52
53
{
"name": "codecamp-api",
"version": "2.0.0",
"description": "CodeCamp — an online coding-judge platform API (Node/Express server + Go judge)",
"main": "server/app.js",
"scripts": {
"start": "concurrently -n server,judge \"npm:start:server\" \"npm:start:judge\"",
"start:server": "node server/app.js",
"start:judge": "cd judge && go run ./cmd/judge",
"start:front": "cd codecamp-front && npm install && npm run build",
"lint": "eslint \"server/**/*.js\" \"contest/**/*.js\" scripts test",
"test": "jest --runInBand --forceExit",
"test:coverage": "jest --runInBand --forceExit --coverage",
"test:smoke": "node scripts/smoke-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TheCodeCamp/codecamp-api.git"
},
"keywords": [
"online",
"judge",
"nodejs",
"express",
"go",
"api"
],
"author": "TheCodeCamp",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^5.13.20",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.6",
"supertest": "^6.3.4"
}
}