-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "ploshadka.api",
"version": "0.0.1",
"type": "module",
"description": "sports leisure organization service",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"dev": "nodemon --watch './src/**/*.ts' --ext ts --exec 'yarn start:dev'",
"start": "node dist/index.js -c app-config.yaml -c app-config.local.yaml",
"start:dev": "yarn build && node dist/index.js -c app-config.yaml -c app-config.local.yaml",
"export:xml": "node --loader ts-node/esm ./src/repository/storage/postgres/export/exportToXML.ts",
"export:pdf": "node --loader ts-node/esm ./src/repository/storage/postgres/export/exportToPDF.ts"
},
"author": "e11sy",
"license": "MIT",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.3",
"@types/pdfmake": "^0.2.9",
"@types/pg": "^8.10.2",
"nodemon": "^2.0.22",
"pdfmake": "^0.2.15",
"pino-pretty": "^10.0.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@codex-team/config-loader": "^1.0.0",
"arg": "^5.0.2",
"fastify": "^4.17.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"nanoid": "^4.0.2",
"pg": "^8.11.0",
"sequelize": "^6.31.1",
"zod": "^3.21.4"
},
"packageManager": "[email protected]"
}