-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
119 lines (119 loc) · 3.43 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": "sectester-js-demo",
"version": "2.3.1",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/sectester-js-demo.git"
},
"author": {
"name": "Artem Derevnjuk",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NeuraLegion/sectester-js-demo/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{ts,js,json,md}": [
"prettier --write"
]
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"husky": "husky",
"nest": "nest",
"prettier": "prettier",
"jest": "jest",
"mikro-orm": "mikro-orm",
"prepare": "is-ci || husky",
"build": "nest build",
"migration:up": "mikro-orm migration:up",
"migration:down": "mikro-orm migration:down",
"format": "prettier --write \"{src,apps,libs,test}/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config test/jest-e2e.config.mjs test/e2e",
"test:sec": "jest --config test/jest-e2e.config.mjs test/sec"
},
"homepage": "https://github.com/NeuraLegion/sectester-js-demo#readme",
"dependencies": {
"@mikro-orm/core": "^6.3.13",
"@mikro-orm/migrations": "^6.3.13",
"@mikro-orm/nestjs": "^6.0.2",
"@mikro-orm/sqlite": "^6.3.13",
"@nestjs/common": "^10.4.5",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.5",
"@nestjs/platform-express": "^10.4.5",
"@nestjs/swagger": "^7.4.2",
"dotenv": "^16.4.5",
"swagger-ui-express": "^5.0.1",
"tslib": "~2.8.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@mikro-orm/cli": "^6.3.13",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.2.2",
"@nestjs/testing": "^10.4.5",
"@sectester/core": "^0.33.3",
"@sectester/repeater": "^0.33.3",
"@sectester/reporter": "^0.33.3",
"@sectester/runner": "^0.33.3",
"@sectester/scan": "^0.33.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/is-ci": "^3.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^18.19.57",
"@types/supertest": "^6.0.2",
"@types/xml2js": "^0.4.14",
"eslint": "^9.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"is-ci": "~3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"semantic-release": "^22.0.12",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.10.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}