-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "expense-assistant",
"version": "0.0.1",
"description": "",
"author": "ayuvlasenko",
"private": true,
"license": "MIT",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "npx nest build",
"start": "npx nest start",
"start:debug": "npx nest start --debug 0.0.0.0:9229 --watch --preserveWatchOutput",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@nestjs/common": "10.3.0",
"@nestjs/config": "3.1.1",
"@nestjs/core": "10.3.0",
"@nestjs/platform-express": "10.3.0",
"@prisma/client": "5.7.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"crc-32": "1.2.2",
"joi": "17.11.0",
"luxon": "3.4.4",
"reflect-metadata": "0.1.14",
"rxjs": "7.8.1",
"telegraf": "4.15.3",
"tsconfig-paths": "4.2.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@nestjs/cli": "10.2.1",
"@nestjs/schematics": "10.0.3",
"@nestjs/testing": "10.3.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.11",
"@types/luxon": "3.3.7",
"@types/node": "20.10.5",
"@types/supertest": "2.0.16",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-sonarjs": "0.23.0",
"jest": "29.7.0",
"prettier": "3.1.1",
"prisma": "5.7.1",
"source-map-support": "0.5.21",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}