-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 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
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
{
"name": "codgic-api",
"version": "1.0.0",
"description": "API handler of Codgic Online Judge.",
"main": "./src/index.ts",
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"compile": "tsc -d -p .",
"compile:watch": "tsc -w -d -p .",
"start": "ts-node ./src/index.ts",
"test": "gulp test"
},
"repository": "https://github.com/Codgic/codgic-api",
"author": "Jimmy Zhang <codgician@users.noreply.github.com>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/Codgic/codgic-api/issues"
},
"homepage": "https://github.com/Codgic/codgic-api#readme",
"dependencies": {
"@types/http-errors": "^1.6.1",
"@types/js-yaml": "^3.9.1",
"@types/jsonwebtoken": "^7.2.3",
"@types/koa": "^2.0.39",
"@types/koa-bodyparser": "^3.0.25",
"@types/koa-compress": "^2.0.7",
"@types/koa-helmet": "^3.1.1",
"@types/koa-jwt": "^3.2.1",
"@types/koa-logger": "^2.0.2",
"@types/koa-mount": "^2.0.18",
"@types/koa-router": "^7.0.23",
"@types/node": "^8.0.31",
"email-validator": "^1.1.1",
"http-errors": "^1.6.2",
"isemail": "^3.0.0",
"js-yaml": "^3.10.0",
"jsonwebtoken": "^8.0.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-helmet": "^3.2.0",
"koa-jwt": "^3.2.2",
"koa-logger": "^3.1.0",
"koa-router": "^7.2.1",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"typeorm": "^0.1.0-alpha.49"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-http": "^3.0.3",
"@types/del": "^3.0.0",
"@types/gulp": "^4.0.4",
"@types/gulp-mocha": "^0.0.30",
"@types/gulp-rename": "^0.0.32",
"@types/gulp-shell": "0.0.30",
"@types/mocha": "^2.2.43",
"@types/sinon": "^2.3.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^3.0.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-copy": "^1.0.1",
"gulp-mocha": "^4.3.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.3",
"gulp-tslint": "^8.1.2",
"gulpclass": "^0.1.2",
"mocha": "^3.5.3",
"sinon": "^4.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"typescript-register": "^1.1.0",
"typescript-require": "^0.2.9-1"
}
}