-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (84 loc) · 2.2 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
85
{
"name": "leaguey",
"version": "0.1.0",
"description": "League Results at your finertips.",
"main": "dist/server.js",
"scripts": {
"make:serve": "nodemon --ignore tests/ --watch src -e ts,tsx --exec ts-node src/server.ts",
"make:test": "jest",
"make:build": "npm run build && npm run serve",
"make:up": "docker-compose -f \"docker-compose.yml\" up -d --build",
"serve": "node dist/server.js",
"start": "npm run serve",
"watch-server": "nodemon --ignore tests/ --watch src -e ts,tsx --exec ts-node src/server.ts",
"build-ts": "tsc",
"build": "npm run build-ts",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch"
},
"engines": {
"node": "14.x.x",
"npm": "6.x.x"
},
"author": "Yusuf Taiwo",
"license": "None",
"keywords": [
"typescript"
],
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/jest": "^26.0.22",
"@types/koa": "2.13.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^6.0.2",
"@types/node": "^14.14.37",
"@types/shelljs": "^0.8.8",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"@shopify/jest-koa-mocks": "^2.3.4",
"@types/lodash": "^4.14.170",
"@types/redis": "^2.8.30",
"axios": "^0.24.0",
"class-validator": "^0.13.1",
"cron": "^1.8.2",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"form-data": "^4.0.0",
"jose": "^3.13.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^6.1.0",
"koa-jwt": "^4.0.0",
"koa-swagger-decorator": "^1.6.4",
"lodash": "^4.17.21",
"mysql2": "^2.3.2",
"nanoid": "^3.1.30",
"pdfkit-table": "^0.1.59",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.32",
"winston": "^3.3.3"
},
"jest": {
"roots": [
"<rootDir>"
],
"testMatch": [
"**/tests/**/*.+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}