-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.5 KB
/
package.json
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": "judge-backend",
"version": "0.0.1",
"description": "Backend service for UTPJudge project.",
"main": "app.js",
"scripts": {
"postinstall": "mkdir -p data && mkdir -p data/submissions && mkdir -p data/problems",
"start": "node bin/www",
"start-dev": "DEBUG=judge-backend:* nodemon bin/www",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "semistandard",
"test:unit": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/in-silico/judge-backend.git"
},
"author": "Manuel Pineda <[email protected]> (http://github.com/pin3da)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/in-silico/judge-backend/issues"
},
"homepage": "https://github.com/in-silico/judge-backend#readme",
"devDependencies": {
"nodemon": "^1.9.2",
"tap": "^5.0.1"
},
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "^1.14.2",
"cn-utils": "^1.0.0",
"colors": "^1.1.2",
"connect-mongo": "^1.1.0",
"cors": "^2.7.1",
"debug": "^2.2.0",
"deque-ds": "^2.0.1",
"express": "^4.13.3",
"express-session": "^1.13.0",
"gunzip-maybe": "^1.3.1",
"jwt-simple": "^0.5.0",
"kerberos": "0.0.21",
"mkdirp": "^0.5.1",
"mongoose": "^4.5.1",
"morgan": "^1.6.1",
"multer": "^1.1.0",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"pre-commit": "^1.1.3",
"semistandard": "^8.0.0",
"stream-set": "^1.1.0",
"tar-stream": "^1.3.2"
}
}