-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "livemock-monorepo",
"version": "1.2.5",
"description": "LiveMock is a comprehensive tool for API development and testing, offering mock data, request proxying, and logging, to streamline workflows and track traffic.",
"main": "index.js",
"private": true,
"scripts": {
"back-end-dev": "yarn workspace back-end start",
"front-end-dev": "yarn workspace front-end dev",
"web-dev": "concurrently \"npm run back-end-dev\" \"npm run front-end-dev\"",
"desktop-dev": "yarn workspace livemock-core build && yarn workspace livemock dev",
"web-build": "yarn workspace livemock-core build && yarn workspace front-end build",
"web-start": "yarn workspace back-end start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alinGmail/LiveMock.git"
},
"keywords": [
"api",
"mock",
"http",
"mock",
"developer",
"tool"
],
"workspaces": [
"core",
"frontEnd",
"backEnd",
"desktop"
],
"author": "jason zhai",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alinGmail/LiveMock/issues"
},
"homepage": "https://github.com/alinGmail/LiveMock#readme",
"devDependencies": {
"@types/uuid": "^9.0.7",
"concurrently": "^8.2.2",
"prettier": "^3.2.2",
"typescript": "^5.3.3"
},
"dependencies": {
"express": "4.18.2",
"uuid": "9.0.1"
},
"packageManager": "yarn@4.5.2"
}