-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.79 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "jambox",
"version": "0.4.4",
"description": "Tool for recording and playing back HTTP requests.",
"bin": {
"jam": "./jam.mjs",
"jam-server": "./jam-server.mjs"
},
"packageManager": "yarn@3.2.4",
"author": "Arthur Buldauskas <arthurbuldauskas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+github.com:ballercat/jambox.git"
},
"scripts": {
"build": "webpack",
"dev": "nodemon --watch ext --watch src --exec ./jam-server.mjs",
"test": "c8 -r=text -r=lcov ava",
"e2e": "NODE_OPTIONS=--dns-result-order=ipv4first c8 -o ./coverage-cypress -r=text -r=lcov node ./e2e-backend.mjs",
"e2e-dev": "nodemon --watch ext --watch src --exec ./e2e-backend.mjs",
"cy": "HTTP_PROXY=http://localhost:8000 cypress open --component",
"cy-ci": "HTTP_PROXY=http://localhost:8000 cypress run --component",
"lint": "eslint src/**/*.mjs",
"format": "prettier --write ./src",
"shutdown": "curl localhost:9000/shutdown",
"health": "curl localhost:9000/info"
},
"dependencies": {
"@httptoolkit/browser-launcher": "^2.0.2",
"@yarnpkg/fslib": "^3.0.0-rc.48",
"@yarnpkg/libzip": "^3.0.0-rc.48",
"arg": "^5.0.2",
"body-parser": "^1.20.1",
"debug": "^4.3.4",
"deepmerge": "4.3.1",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"global-agent": "^3.0.0",
"http-encoding": "^1.5.1",
"minimatch": "^5.1.0",
"mockttp": "^3.9.4",
"nock": "^13.2.9",
"node-fetch": "2.6.7",
"osenv": "^0.1.5",
"tail-file": "^1.4.15",
"undici": "6.7.0",
"wait-on": "^6.0.1",
"zen-observable": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/chrome": "^0.0.237",
"@types/zen-observable": "^0.8.3",
"ava": "^5.0.1",
"babel-loader": "^9.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"c8": "^7.12.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"cypress": "^13.13.2",
"eslint": "^8.31.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"find-open-port": "^2.0.3",
"html-webpack-plugin": "^5.5.0",
"https-proxy-agent": "^5.0.1",
"memfs": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"prop-types": "^15.8.1",
"proxy-agent": "^5.0.0",
"supertest": "^6.3.1",
"superwstest": "^2.0.3",
"svelte": "^4.2.18",
"svelte-jsoneditor": "^0.17.8",
"svelte-loader": "^3.1.4",
"svelte-routing": "^1.11.0",
"svelte-table": "^0.6.1",
"svelte-watch-resize": "^1.0.3",
"typescript": "^5.1.3",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"nodemonConfig": {
"env": {
"DEBUG": "jambox*"
}
}
}