-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 KB
/
package.json
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
{
"name": "mocking-jukebox",
"version": "1.0.0",
"description": "Record and playback mock data for network requests made by frontend web apps",
"author": "Geoffrey Booth",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:disney/mocking-jukebox.git"
},
"type": "module",
"main": "dist/server.cjs",
"browser": "dist/client.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"build": "node build.js",
"build:serve": "node build.js --serve",
"build:watch": "node build.js --watch",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint '**/*.{js,ts}'",
"lint:eslint:fix": "eslint --fix '**/*.{js,ts}'",
"lint:tsc": "tsc --noEmit",
"start": "node test/fixtures/server.js",
"test:cypress:open": "cypress open",
"test:cypress:run": "cypress run",
"test": "start-server-and-test start http://localhost:4000 test:cypress:run"
},
"dependencies": {
"js-yaml": "^4.1.0",
"msw": "^2.4.9",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/js-yaml": "^4.0.1",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"cypress": "^13.6.4",
"esbuild": "^0.12.9",
"eslint": "^7.29.0",
"express": "5.0.1",
"start-server-and-test": "^2.0.3",
"typescript": "^4.3.4"
},
"peerDependencies": {
"express": "*"
}
}