-
Notifications
You must be signed in to change notification settings - Fork 201
/
package.json
119 lines (119 loc) · 3.36 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
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
{
"name": "broken-crystals",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"build:fast": "nest build -c nest-cli.fast.json",
"format": "prettier --check .",
"format:write": "prettier --write .",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.config.mjs",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"dependencies": {
"@fastify/cookie": "^9.4.0",
"@fastify/multipart": "^8.3.0",
"@fastify/session": "^10.9.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.15.0",
"@mercuriusjs/gateway": "^3.0.1",
"@mikro-orm/core": "^6.3.10",
"@mikro-orm/nestjs": "^6.0.2",
"@mikro-orm/postgresql": "^6.3.10",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@nestjs/common": "^10.4.2",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.2",
"@nestjs/graphql": "^12.2.0",
"@nestjs/mercurius": "^12.2.0",
"@nestjs/platform-fastify": "^10.4.2",
"@nestjs/swagger": "^7.4.1",
"@sectester/core": "^0.33.1",
"@sectester/repeater": "^0.33.1",
"@sectester/reporter": "^0.33.1",
"@sectester/runner": "^0.33.1",
"@sectester/scan": "^0.33.1",
"@xmldom/xmldom": "^0.9.2",
"argon2": "^0.41.1",
"axios": "^1.7.7",
"class-transformer": "^0.5.1",
"dot": "^1.1.3",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"jose": "^5.9.2",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.6",
"jwt-simple": "^0.5.6",
"libxmljs": "^1.0.11",
"mercurius": "^14.1.0",
"nodemailer": "^6.9.15",
"pg": "^8.12.0",
"raw-body": "^3.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"xpath": "0.0.34"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.10.0",
"@mikro-orm/cli": "^6.3.10",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.2",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/dot": "^1.1.7",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.6",
"@types/jwk-to-pem": "^2.0.3",
"@types/jwt-simple": "^0.5.36",
"@types/libxmljs": "^0.18.13",
"@types/node": "^18.19.50",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"overrides": {
"@nestjs/graphql": {
"ts-morph": "^22.0.0"
}
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"npm run lint -- --fix --no-warn-ignored",
"npm run format -- --write"
],
"*.{json,md,html}": [
"npm run format -- --write"
],
"client/**/*.{js,jsx,ts,tsx}": [
"npm --prefix client run lint -- --fix --no-warn-ignored",
"npm --prefix client run format -- --write"
],
"client/*.{json,md,html}": [
"npm --prefix client run format -- --write"
]
}
}