-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
75 lines (75 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "build-reactor",
"description": "Developer notifications and dashboard for CI servers",
"version": "5.0.0",
"homepage": "https://github.com/AdamNowotny/BuildReactor",
"author": {
"name": "Adam Nowotny",
"url": "https://github.com/AdamNowotny"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git://github.com/AdamNowotny/BuildReactor.git"
},
"bugs": {
"url": "https://github.com/AdamNowotny/BuildReactor/issues"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/AdamNowotny/BuildReactor/blob/master/LICENSE"
}
],
"type": "module",
"scripts": {
"dev": "npx vite --host",
"dev:mock": "VITE_MOCK_WORKER=1 npx vite --host",
"dev:firefox": "MANIFEST_TARGET=firefox npx vite --host",
"dist": "npx vite build",
"dist:firefox": "MANIFEST_TARGET=firefox npx vite build",
"lint": "node_modules/.bin/eslint .",
"test": "vitest --run",
"test:watch": "vitest"
},
"dependencies": {
"bootstrap": "^5.3.3",
"events": "^3.3.0",
"react": "19.0.0",
"react-bootstrap": "2.10.7",
"react-dom": "19.0.0",
"react-router-dom": "7.1.1",
"react-sortablejs": "^6.1.4",
"rx": "4.1.0",
"sortablejs": "^1.15.6",
"xml2js": "0.6.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@eslint/js": "9.17.0",
"@iconify-json/fa": "1.2.1",
"@iconify-json/fa-solid": "^1.2.1",
"@svgr/plugin-jsx": "^8.1.0",
"@types/chrome": "0.0.287",
"@types/eslint__js": "^8.42.3",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/rx": "^4.1.4",
"@types/sortablejs": "^1.15.8",
"@types/xml2js": "^0.4.14",
"@vitejs/plugin-react": "4.3.4",
"eslint": "9.17.0",
"eslint-plugin-react": "7.37.3",
"globals": "15.14.0",
"stream-browserify": "^3.0.0",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"unplugin-icons": "0.22.0",
"vite": "5.4.6",
"vite-plugin-zip-pack": "^1.2.4",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}