-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.64 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.64 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
{
"name": "@rkumwt/express-rest-api",
"version": "1.0.6",
"description": "REST API package for Express.js — CRUD, filtering, sorting, pagination, hooks",
"main": "src/index.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"test:coverage": "jest --coverage --forceExit --detectOpenHandles",
"test:unit": "jest tests/unit --forceExit",
"test:integration": "jest tests/integration --forceExit --detectOpenHandles",
"test:setup": "npx prisma migrate dev --schema=tests/prisma/schema.prisma --name init",
"example": "node example/app.js"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"express": "^4.18.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"@prisma/client": {
"optional": true
},
"sequelize": {
"optional": true
},
"mongoose": {
"optional": true
},
"knex": {
"optional": true
},
"drizzle-orm": {
"optional": true
}
},
"devDependencies": {
"express": "^4.21.0",
"@prisma/client": "^6.0.0",
"prisma": "^6.0.0",
"jest": "^29.0.0",
"supertest": "^7.0.0",
"zod": "^3.23.0"
},
"files": [
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"node",
"nodejs",
"express",
"rest",
"api",
"crud",
"prisma",
"sequelize",
"mongoose",
"knex",
"drizzle",
"filtering",
"pagination",
"sorting",
"resource-api"
],
"repository": {
"type": "git",
"url": "https://github.com/rkumwt/express-rest-api"
},
"homepage": "https://express-rest-api.rajesh-kumawat.in",
"license": "MIT",
"author": "rkumwt"
}