-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "mocks-server-lite",
"version": "0.16.0",
"description": "Mocking server supporting multiple route variants and mocks",
"keywords": [
"mocks",
"server",
"lite",
"mock",
"routes",
"route variants",
"web sockets",
"api",
"rest",
"express",
"testing",
"development",
"middleware"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/burt202/mocks-server-lite.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky",
"lint": "eslint",
"prettier-check": "prettier \"**/*.ts{,x}\" --check",
"test": "vitest --run src/",
"pre-commit": "npm run lint && npm run prettier-check",
"pre-push": "npm run test && npm run build",
"build": "rm -rf dist/ && tsc"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"@types/ws": "^8.18.1",
"body-parser": "^2.2.2",
"chalk": "^5.6.2",
"cors": "^2.8.6",
"date-fns": "^4.1.0",
"express": "^5.2.1",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.19.15",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}