-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "mockserver-monorepo",
"version": "1.3.0",
"description": "create mock server on the go from ui or json schema",
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"d": "tsc && node dist/deploy.js"
},
"license": "BSD-3-Clause",
"author": {
"name": "Himanshu",
"email": "hyattherate2005@gmail.com",
"url": "https://himanshuat.com"
},
"keywords": [
"mock",
"server",
"api",
"testing",
"chaos",
"engineering",
"frontend",
"development"
],
"homepage": "https://github.com/himasnhu-at/mockserver#readme",
"bugs": {
"url": "https://github.com/himasnhu-at/mockserver/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/himasnhu-at/mockserver.git"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"prettier": "^3.6.2",
"turbo": "^2.6.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/semver": "^7.7.1",
"semver": "^7.7.3"
}
}