forked from Zack-Dx/Jsonify-RestAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "jsonify_api",
"version": "1.0.3",
"description": "Jsonify API - A free RESTful mock data API for developers. Generate and access mock data easily",
"type": "module",
"main": "src/server.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.8.1"
},
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"format:check": "prettier ./src --check",
"format:fix": "prettier ./src --write",
"lint:check": "npx eslint ./src",
"lint:fix": "npx eslint ./src --fix",
"fix:all": "npm run format:fix && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zack-Dx/Jsonify-RestAPI"
},
"keywords": [
"node",
"express",
"RESTful",
"rest-api",
"mock API",
"developer",
"data",
"web service",
"JSON API",
"backend",
"api as a service",
"mock data",
"public apis",
"developer tools",
"sample data",
"sandbox data",
"dummy data",
"test data",
"fake data",
"test data"
],
"author": "Thealan",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.0.2",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"mongoose": "^7.5.2",
"validator": "^13.11.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1",
"prettier": "3.0.3"
}
}