-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.77 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
{
"name": "pr-radar",
"version": "0.6.0",
"description": "Track PRs, CI status, code reviews & deployments across GitHub, GitLab and Bitbucket. No backend, free forever. By DeployHQ.",
"private": false,
"type": "module",
"license": "MIT",
"author": "DeployHQ (https://www.deployhq.com)",
"repository": {
"type": "git",
"url": "https://github.com/deployhq/pr-radar.git"
},
"homepage": "https://github.com/deployhq/pr-radar#readme",
"bugs": {
"url": "https://github.com/deployhq/pr-radar/issues"
},
"scripts": {
"dev": "BROWSER=chrome vite build --watch --mode development",
"dev:chrome": "BROWSER=chrome vite build --watch --mode development",
"dev:firefox": "BROWSER=firefox vite build --watch --mode development",
"build": "tsc && BROWSER=chrome vite build",
"build:chrome": "tsc && BROWSER=chrome vite build",
"build:firefox": "tsc && BROWSER=firefox vite build",
"build:edge": "tsc && BROWSER=edge vite build",
"preview": "vite preview",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/chrome": "^0.0.268",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.58.0",
"vite": "^5.3.3",
"vite-plugin-web-extension": "^4.5.1",
"vitest": "^2.1.9",
"web-ext": "^10.1.0",
"web-ext-submit": "^7.8.0"
}
}