-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "contest-judge",
"version": "1.0.0",
"description": "A programming contest judge. Built on camisole.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "echo none",
"db:init": "node server/db/init.js",
"pdata:gen": "node server/scripts/problemDataGeneration.js",
"dev": "nodemon -e js,ejs,less,txt,in,out,json index.js",
"format": "prettier \"**/*.{js,less}\" --write",
"start": "node index.js"
},
"author": "Robert Chen",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.1.0",
"async": "^3.1.0",
"autoprefixer": "^9.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"ejs": "^2.6.2",
"express": "^4.17.1",
"less-middleware": "^3.1.0",
"markdown-it": "^8.4.2",
"multer": "^1.4.1",
"pg": "^7.11.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"x-xss-protection": "^1.2.0"
},
"devDependencies": {
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chen-robert/contest-judge.git"
}
}