-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.31 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
{
"name": "@nodeboot/koa-sample",
"version": "2.3.1",
"description": "Node-Boot sample project using Koa",
"author": "Manuel Santos <ney.br.santos@gmail.com>",
"license": "MIT",
"private": "true",
"keywords": [
"monorepo",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/nodejs-boot/node-boot.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"start": "pnpm run clean:build && pnpm run build && node dist/server.js",
"start:prod": "pnpm run build && NODE_ENV=production node dist/server.js",
"dev": "NODE_ENV=development nodemon",
"nodeboot:update": "pnpm update @nodeboot/*@latest",
"build": "tsc -p tsconfig.build.json",
"postbuild": "node ./node_modules/@nodeboot/aot/dist/scripts/node-boot-aot.js",
"clean:build": "rimraf ./dist",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "pnpm lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "node --test --test-reporter node-test-reporter --require ts-node/register test/**/*.{test,it.test}.ts",
"pretest:coverage": "mkdir -p coverage",
"test:coverage": "node --experimental-test-coverage --test-coverage-include='src/**/*.ts' --test-coverage-exclude='src/**/*.test.ts' --test-coverage-exclude='src/**/*.spec.ts' --test --test-reporter node-test-reporter --test-reporter-destination stdout --test-reporter lcov --test-reporter-destination coverage/lcov.info --require ts-node/register test/**/*.{test,it.test}.ts",
"tsc": "tsc",
"rebuild:sqlite": "npm rebuild better-sqlite3",
"create:migration": "typeorm migration:create ./src/persistence/migrations/migration"
},
"dependencies": {
"@nodeboot/config": "workspace:*",
"@nodeboot/context": "workspace:*",
"@nodeboot/core": "workspace:*",
"@nodeboot/starter-openapi": "workspace:*",
"@nodeboot/koa-server": "workspace:*",
"@nodeboot/authorization": "workspace:*",
"@nodeboot/di": "workspace:*",
"@nodeboot/error": "workspace:*",
"@nodeboot/starter-actuator": "workspace:*",
"@nodeboot/starter-persistence": "workspace:*",
"@nodeboot/starter-scheduler": "workspace:*",
"@nodeboot/starter-http": "workspace:*",
"@nodeboot/starter-validation": "workspace:*",
"@nodeboot/aot": "workspace:*",
"katxupa": "^1.10.4",
"reflect-metadata": "^0.2.1",
"typeorm": "^1.0.0",
"koa": "^3.0.1",
"@koa/router": "^14.0.0",
"koa-bodyparser": "^4.4.1",
"@koa/multer": "^4.0.0",
"koa-session": "^7.0.2",
"koa-cookies": "^5.0.0",
"@koa/cors": "^5.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"koa-helmet": "^8.0.1",
"hpp": "^0.2.3",
"typedi": "^0.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/koa-cors": "^0.0.2",
"@types/koa": "^2.13.8",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-helmet": "^6.0.4",
"@types/node": "^22.13.4",
"@types/supertest": "^2.0.12"
}
}