-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "@requestly/mock-server",
"version": "0.3.2",
"description": "- Methods: GET, POST, PUT, OPTIONS - Description - Endpoint (can be full path) (/api/v1/users) - Multiple Responses - Shuffle Response - Sequential Response - Rules in Response - Status (Any status code 2xx, 4xx) - Latency - Body - Templating - Faker js - Headers",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node build/test/index.js",
"start:dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"prepublish": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/node": "^18.11.11",
"@types/path-to-regexp": "^1.7.0",
"nodemon": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/har-format": "^1.2.14",
"cors": "^2.8.5",
"express": "^4.20.0",
"handlebars": "^4.7.8",
"path-to-regexp": "^0.1.7"
},
"files": [
"build"
]
}