-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.98 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.98 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
{
"name": "typescript-koa",
"version": "1.0.0",
"description": "REST API using Typescript Node Koa with Swagger, Pino Logger, TypeORM",
"main": "app.js",
"scripts": {
"dev": "nodemon --watch src -e ts,tsx --exec ts-node src/app.ts | pino-pretty -t 'SYS:HH:MM:ss' -i hostname",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"start": "yarn run build && cd build/src && node app.js",
"build": "rm -rf build && yarn run lint && tsc -p tsconfig.release.json && cp .env ./build/src/",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('!!! You must use Yarn to install, not NPM !!!')\""
},
"author": "Jacob Zukauska | Ashish Jayan",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cron": "^1.7.2",
"@types/koa": "^2.11.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^5.2.0",
"@types/koa-pino-logger": "^2.1.6",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.3",
"@types/node": "^14.11.2",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"shelljs": "^0.8.4",
"ts-node": "^9.0.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^9.4.0",
"@std/esm": "^0.26.0",
"class-validator": "^0.12.2",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-helmet": "^6.0.0",
"koa-jwt": "^4.0.0",
"koa-pino-logger": "^3.0.0",
"koa-swagger-decorator": "^1.7.0",
"pg": "^8.3.3",
"pino-pretty": "^4.2.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.28"
}
}