-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.78 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "lodestar-server",
"version": "0.0.1",
"description": "",
"author": "Urfit Tech",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "^18.13.0"
},
"scripts": {
"build": "nest build",
"explore": "node -r tsconfig-paths/register -r ts-node/register src/explore.ts",
"start": "nest start",
"start:dev": "env NODE_ENV=development nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"jest": "env NODE_ENV=test jest",
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"test:cov": "yarn jest --coverage",
"test:debug": "env NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "yarn jest --config ./jest-e2e.config.ts",
"test:benchmark": "yarn jest --config ./jest-benchmark.config.ts --logHeapUsage",
"typeorm": "npx ts-node node_modules/.bin/typeorm -d src/data-source.ts",
"hasura": "npx hasura-cli"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.341.0",
"@aws-sdk/s3-request-presigner": "^3.341.0",
"@nestjs/bull": "^0.6.3",
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/schedule": "^2.2.1",
"@nestjs/swagger": "^7.1.11",
"@nestjs/typeorm": "^9.0.1",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"aws-cloudfront-sign": "^3.0.2",
"bcrypt": "^5.1.1",
"bull": "^4.10.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"connect-redis": "^7.1.0",
"cookie-parser": "^1.4.6",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express-session": "^1.17.3",
"ics": "^3.5.0",
"ioredis": "^5.3.1",
"joi": "^17.12.3",
"jsonwebtoken": "^9.0.0",
"libphonenumber-js": "^1.10.56",
"mustache": "^4.2.0",
"nestjs-pino": "^3.2.0",
"nestjs-spelunker": "^1.1.3",
"node-zabbix-sender": "^1.1.0",
"parse-domain": "4.1.0",
"pg": "^8.9.0",
"pino-http": "^8.3.3",
"ramda": "^0.30.1",
"reflect-metadata": "^0.1.13",
"rrule": "^2.8.1",
"rxjs": "^7.2.0",
"sanitize-html": "^2.11.0",
"typeorm": "^0.3.15",
"typeorm-cursor-pagination": "^0.10.1",
"ua-parser-js": "^1.0.36",
"uuid": "^9.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/cookie-parser": "^1.4.4",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.7",
"@types/ioredis": "^5.0.0",
"@types/jest": "29.2.4",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.194",
"@types/multer": "^1.4.7",
"@types/mustache": "^4.2.2",
"@types/node": "18.11.18",
"@types/supertest": "^2.0.11",
"@types/ua-parser-js": "^0.7.37",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"hasura-cli": "2.22.0",
"husky": "^8.0.3",
"jest": "29.3.1",
"lint-staged": "^13.1.0",
"nestjs-spelunker": "^1.1.3",
"organize-imports-cli": "^0.10.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.1.1",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts*": [
"organize-imports-cli",
"prettier --write",
"git add"
]
}
}