-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.44 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.44 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "koa-api-example",
"version": "0.0.0-development",
"private": true,
"description": "Example API with Koa",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/leosuncin/koa-api-example.git"
},
"author": "Jaime Leonardo Suncin Cruz <leosuncin@gmail.com>",
"main": "dist/server.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsnd -r tsconfig-paths/register src/server.ts",
"format": "prettier --write .",
"lint": "eslint .",
"postbuild": "tscpaths -p tsconfig.build.json -s src -o dist",
"prebuild": "del-cli dist",
"prepare": "husky",
"release": "semantic-release",
"start": "node dist/server.js",
"start:e2e": "server-test start :3000 test:e2e",
"test": "cross-env NODE_ENV=test jest",
"test:e2e": "jest --testRegex .e2e-spec.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"keywords": [
"koa",
"api",
"rest"
],
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.6.2",
"envalid": "^8.1.1",
"http-errors": "^2.0.1",
"http-graceful-shutdown": "^3.1.15",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.3",
"koa": "^3.1.2",
"koa-bodyparser": "^4.4.1",
"koa-joi-router": "^8.0.0",
"koa-jwt": "^4.0.4",
"koa-logger": "^4.0.0",
"reflect-metadata": "^0.2.1",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@faker-js/faker": "^8.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/bcryptjs": "^3.0.0",
"@types/http-errors": "^2.0.5",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/koa": "^3.0.1",
"@types/koa-bodyparser": "^4.3.13",
"@types/koa-joi-router": "^8.0.8",
"@types/koa-logger": "^3.1.5",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"devmoji": "^2.3.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-array-func": "^5.1.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-no-secrets": "^2.3.3",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-switch-case": "^1.1.2",
"fast-check": "^3.3.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^29.3.1",
"jest-mock-extended": "^4.0.0",
"lint-staged": "^16.3.2",
"pactum": "^3.9.1",
"prettier": "^3.8.1",
"prettier-plugin-package": "^2.0.0",
"semantic-release": "^25.0.3",
"start-server-and-test": "^2.1.5",
"supertest": "^7.2.2",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1",
"tscpaths": "^0.0.9",
"typescript": "^5.0.3",
"typescript-eslint": "^8.57.0"
}
}