-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.05 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.05 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
{
"name": "@standardkit/architect",
"version": "0.0.0",
"description": "StandardKit Architect - Auto-generated CRUD API with NestJS, MikroORM & Swagger",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"prepare": "husky",
"hook:pre-commit": "lint-staged",
"hook:pre-push": "npm test",
"lint:eslint": "eslint \"{src,test}/**/*.ts\" --fix",
"lint:prettier": "prettier \"**/*.{md,yml,yaml,json}\" --write --no-error-on-unmatched-pattern",
"lint:all": "npm run lint:eslint && npm run lint:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/standardkit/architect.git"
},
"keywords": ["standardkit", "architect", "nestjs", "mikro-orm", "swagger", "crud", "api", "codegen"],
"author": "Coen Mooij",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/standardkit/architect/issues"
},
"homepage": "https://github.com/standardkit/architect#readme",
"dependencies": {
"@mikro-orm/core": "^6.4.2",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/swagger": "^8.1.0",
"@standardkit/caas": "^0.0.2",
"@standardkit/core": "^0.2.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/testing": "^10.4.15",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"uuid": "^11.0.3"
}
}