-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.81 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
{
"name": "app-template",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"test:coverage": "nyc mocha",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon | pino-pretty",
"knex": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS='--loader ts-node/esm' knex --knexfile ./src/knexfile.ts"
},
"author": "Dmitry Chirkin <dmitry.chirkin@gmail.com>",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=18.12.1"
},
"dependencies": {
"@koa/router": "^12.0.0",
"argon2": "^0.30.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"joi": "^17.7.0",
"knex": "^2.4.2",
"koa": "^2.14.1",
"koa-body": "^6.0.1",
"koa-helmet": "^6.1.0",
"koa-pino-logger": "^4.0.0",
"koa2-swagger-ui": "^5.7.0",
"objection": "^3.0.1",
"pg": "^8.8.0",
"pino": "^8.8.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/chai": "^4.3.4",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/koa-pino-logger": "^3.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/swagger-jsdoc": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"pino-pretty": "^9.1.1",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text"
],
"all": true
}
}