-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "@nickhudkins/malcolm-root",
"version": "0.0.0",
"description": "A Man-In-The-Middle Proxy for Development!",
"repository": {
"url": "git+https://github.com/nickhudkins/malcolm.git"
},
"packageManager": "npm@10.5.0",
"workspaces": [
"packages/*",
"tooling/*"
],
"scripts": {
"start": "turbo run start",
"start:dev": "turbo run start:dev",
"test": "turbo run test",
"fix": "turbo run fix",
"fix:format": "turbo run fix:format",
"fix:lint": "turbo run fix:lint",
"clean": "turbo run clean",
"check": "turbo run check",
"check:format": "turbo run check:format",
"check:lint": "turbo run check:lint",
"build": "turbo run build",
"version:patch": "npm version patch -w packages/proxy -w packages/contrib",
"version:minor": "npm version minor -w packages/proxy -w packages/contrib",
"version:major": "npm version major -w packages/proxy -w packages/contrib"
},
"type": "module",
"author": "Nick Hudkins <nick@nickhudkins.com>",
"contributors": [
"Sean Boult <sean@boult.me>",
"Kirin Patel <contact@kirinpatel.com>"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.12",
"eslint": "^9.3.0",
"typescript-eslint": "^8.0.0-alpha.14"
},
"dependencies": {
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"turbo": "^2.0.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}