-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.51 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
{
"name": "apq-debugger",
"version": "2.0.0",
"description": "Chrome DevTools extension for intercepting Apollo Persisted Queries",
"main": "build-enhanced.js",
"scripts": {
"build": "node build-enhanced.js",
"build:dev": "node build-enhanced.js --dev",
"watch": "node build-enhanced.js --watch",
"install-deps": "node install-deps.js",
"test": "jest",
"test:e2e": "playwright test",
"lint": "eslint js/ tests/",
"lint:fix": "eslint js/ tests/ --fix",
"format": "prettier --write \"js/**/*.js\" \"tests/**/*.js\" \"*.js\" \"*.json\"",
"format:check": "prettier --check \"js/**/*.js\" \"tests/**/*.js\" \"*.js\" \"*.json\"",
"version": "node scripts/sync-version.js && git add manifest.json",
"package": "node scripts/package-extension.js",
"release": "npm run build && npm run package"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"chokidar": "^3.5.3",
"clean-css": "^5.3.2",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"fs-extra": "^11.2.0",
"jest": "^27.5.1",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^27.5.1",
"playwright": "^1.58.1",
"prettier": "^3.8.1",
"terser": "^5.24.0"
},
"keywords": [
"chrome-extension",
"devtools",
"apollo",
"graphql",
"debugger",
"apq"
],
"author": "APQ Debugger Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rookieInTraining/apq-debugger.git"
}
}