-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.58 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
81
82
83
84
85
86
{
"name": "onlinejudge",
"version": "1.0.0",
"main": "serevr.js",
"license": "MIT",
"scripts": {
"start": "tsc && npm run link && node ./build/index.js",
"dev": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- -r tsconfig-paths/register ./src/index.ts",
"mock": "./node_modules/.bin/ts-node --require tsconfig-paths/register ./src/task/mock.ts",
"test": "nyc mocha --compilers ts:ts-node/register src/test/**/*.ts --require tsconfig-paths/register --require source-map-support/register --timeout=60000",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "tslint --type-check --fix --project tsconfig.json src/**/*.ts",
"precommit": "npm run lint",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"link": "ln -nsf ../build node_modules/app"
},
"dependencies": {
"class-transformer": "^0.1.6",
"class-validator": "^0.7.1",
"config": "^1.26.1",
"core-decorators": "^0.19.0",
"crypto-js": "^3.1.9-1",
"faker": "^4.1.0",
"ioredis": "^2.5.0",
"js-yaml": "^3.8.4",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-jwt": "^3.2.2",
"koa-logger": "^3.0.0",
"koa-router": "^7.2.0",
"mysql2": "^1.3.2",
"reflect-metadata": "^0.1.10",
"routing-controllers": "0.7.0",
"typedi": "^0.5.2",
"typeorm": "^0.1.0-alpha.17",
"typeorm-typedi-extensions": "^0.0.12",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/chai-as-promised": "^0.0.31",
"@types/config": "^0.0.32",
"@types/crypto-js": "^3.1.33",
"@types/faker": "^4.1.0",
"@types/ioredis": "^0.0.23",
"@types/jsonwebtoken": "^7.2.1",
"@types/koa": "^2.0.39",
"@types/koa-bodyparser": "^3.0.23",
"@types/koa-jwt": "^3.2.0",
"@types/koa-logger": "^2.0.2",
"@types/mocha": "^2.2.41",
"@types/node": "7.0.28",
"@types/supertest": "^2.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^7.0.0",
"codecov": "^2.2.0",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.4",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"nyc": "^11.0.2",
"source-map-support": "^0.4.15",
"supertest": "^3.0.0",
"ts-node": "^3.0.4",
"tsconfig-paths": "^2.2.0",
"tslint": "^5.4.2",
"tslint-config-standard": "^6.0.1",
"typescript": "2.4.0",
"validate-commit-msg": "^2.12.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"cache": true,
"reporter": [
"lcov",
"text"
]
}
}