-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.41 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"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 install",
"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": "^2.4.3",
"envalid": "^8.0.0",
"http-errors": "^2.0.0",
"http-graceful-shutdown": "^3.1.12",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-joi-router": "^8.0.0",
"koa-jwt": "^4.0.3",
"koa-logger": "^3.2.1",
"reflect-metadata": "^0.2.1",
"sqlite3": "^5.1.2",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.0.3",
"@faker-js/faker": "^8.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.0",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-joi-router": "^8.0.4",
"@types/koa-logger": "^3.1.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"devmoji": "^2.3.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^0.25.0",
"eslint-plugin-switch-case": "^1.1.2",
"fast-check": "^3.3.0",
"husky": "^9.0.7",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^15.0.1",
"pactum": "^3.3.1",
"prettier": "^3.2.5",
"prettier-plugin-package": "^1.3.0",
"semantic-release": "^24.0.0",
"start-server-and-test": "^2.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1",
"tscpaths": "^0.0.9",
"typescript": "^5.0.3"
}
}