-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.79 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
{
"name": "@mashup-node/content-type",
"private": false,
"version": "0.4.2",
"repository": "https://github.com/Mash-Up-Node/NestJS-Content-Type.git",
"license": "MIT",
"author": {
"email": "mashup.node@gmail.com",
"name": "MashUp Node",
"url": "https://github.com/Mash-Up-Node"
},
"keywords": [
"nestjs",
"typeorm",
"content-type"
],
"maintainers": [
"J-Hoplin <hoplin.dev@gmail.com> (https://github.com/J-Hoplin)"
],
"description": "A Django-like Content Type framework for Node.js with TypeORM",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint \"lib/**/*.ts\"",
"lint:fix": "eslint \"lib/**/*.ts\" --fix",
"format": "prettier --write \"lib/**/*.ts\"",
"prepare": "husky && husky install"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/typeorm": "^10.0.0",
"reflect-metadata": "^0.1.0",
"rxjs": "^7.0.0",
"typeorm": "^0.3.0"
},
"devDependencies": {
"@nestjs/testing": "^11.0.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"lib/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"tests/**/*.ts": [
"npm test"
]
}
}