-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.55 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
{
"name": "koa-boilerplate",
"version": "1.0.0",
"packageManager": "[email protected]",
"license": "MIT",
"description": "Koa Server Boilerplate",
"author": {
"name": "Marco Turi",
"email": "[email protected]"
},
"scripts": {
"start": "nodemon",
"format": "prettier --write .",
"lint": "eslint . --fix",
"test": "jest -c=./test/jest.opts.js --testMatch='**/__tests__/**/*.spec.ts?(x)' --passWithNoTests",
"test:e2e": "jest -c=./test/jest.opts.js --testMatch='**/__tests__/**/*.e2e.ts?(x)' --globalSetup='<rootDir>/globalSetup.ts' --passWithNoTests --runInBand",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release",
"outdated": "yarn upgrade-interactive"
},
"lint-staged": {
"*.{ts}": [
"eslint --ext .js,.ts --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0",
"yarn": ">=4.0.0"
},
"dependencies": {
"@koa/cors": "5.0.0",
"@koa/router": "12.0.1",
"awilix": "10.0.1",
"awilix-koa": "10.1.0",
"awilix-router-core": "1.6.1",
"joi": "17.12.1",
"koa": "2.15.0",
"koa-better-error-handler": "11.0.4",
"koa-body": "6.0.1",
"koa-compose": "4.1.0",
"koa-helmet": "7.0.2",
"koa-logger": "3.2.1",
"koa-respond": "2.1.0",
"pg": "8.11.3"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "11.0.2",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/jest": "29.5.12",
"@types/koa__router": "12.0.4",
"@types/node": "20.11.17",
"@types/pg": "8.11.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"dotenv": "16.4.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"husky": "9.0.10",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"lodash.memoize": "4.1.2",
"nodemon": "3.0.3",
"pinst": "3.0.0",
"prettier": "3.2.5",
"semantic-release": "23.0.2",
"standard-version": "9.5.0",
"supertest": "6.3.4",
"ts-jest": "29.1.2",
"ts-node-dev": "2.0.0",
"typescript": "5.3.3"
}
}