forked from coding-blocks/judge-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "judge-api",
"version": "1.2.0",
"description": "Judge API",
"main": "dist/server.js",
"repository": "https://github.com/coding-blocks/judge-api",
"author": "Arnav Gupta <[email protected]>",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/amqplib": "^0.5.4",
"amqplib": "^0.5.2",
"apidoc": "^0.17.6",
"base-64": "^0.1.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"cross-env": "^7.0.2",
"debug": "^4.0.0",
"express": "^4.16.2",
"minio": "^7.0.3",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"prettier": "^2.0.5",
"sequelize": "^4.22.6",
"sinon": "^9.0.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"uuid": "^7.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/debug": "^0.0.30",
"@types/express": "^4.0.39",
"@types/joi": "^14.3.4",
"@types/minio": "^7.0.1",
"@types/mocha": "^5.0.0",
"@types/sequelize": "^4.0.79",
"axios": "^0.19.2",
"chai": "^4.2.0",
"mkdirp": "^0.5.1",
"mocha": "^5.0.4",
"nyc": "^12.0.1",
"rimraf": "^2.6.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"scripts": {
"prebuild": "mkdirp dist && rimraf dist/*",
"build": "tsc",
"apidoc": "apidoc -i src -o docs",
"prestart": "npm run build && npm run apidoc",
"start": "cross-env NODE_PATH=dist node dist/run.js",
"test": "cross-env NODE_PATH=src NODE_ENV=test mocha --timeout 12000 --exit --require ts-node/register test/utils/setup*.ts test/unit/validators/*.ts test/e2e/*.ts",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project",
"cover": "nyc npm test",
"seedlangs": "node dist/scripts/seed-defaultlangs.js",
"precodecov": "npm run cover",
"codecov": "codecov"
},
"apidoc": {
"title": "judge-blocks API",
"url": "https://judge2.codingblocks.com/api",
"sampleUrl": "https://judge2.codingblocks.com/api"
},
"nyc": {
"extension": [
".ts",
".js"
],
"reporter": [
"text",
"lcovonly"
],
"sourceMap": true
},
"engines": {
"node": ">=8",
"npm": ">=5",
"yarn": "1"
}
}