-
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) · 2.53 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.53 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": "nestjs-template",
"version": "1.0.0",
"description": "",
"author": "Mnigos",
"private": false,
"license": "MIT LICENSE",
"engines": {
"node": ">=18.0.0 <19.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.19"
},
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"docker:build": "docker-compose up --build",
"docker:start": "docker-compose up",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "jest --config jest-e2e.config.ts",
"test:e2e:watch": "jest --config jest-e2e.config.ts --watch",
"prepare": "husky install"
},
"dependencies": {
"@discord-nestjs/common": "5.2.8",
"@discord-nestjs/core": "5.3.10",
"@nestjs/common": "^10.2.1",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"discord.js": "14.13.0",
"joi": "^17.9.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/types": "^17.4.4",
"@nestjs/cli": "^10.1.12",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.1.3",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.75",
"@types/express": "^4.17.17",
"@types/jest": "29.5.3",
"@types/node": "20.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitest/coverage-v8": "0.34.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-nestjs": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.20.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"pactum": "3.5.0",
"prettier": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"unplugin-swc": "1.3.2",
"vitest": "0.34.2",
"vitest-mock-extended": "1.2.0"
}
}