-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "@contane/foreman",
"version": "0.4.3",
"description": "A Kubernetes application for managing Renovate jobs.",
"author": "Contane",
"license": "Apache-2.0",
"private": true,
"type": "module",
"main": "dist/server.js",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"build": "npm run build --workspaces && node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc",
"lint": "npm run lint --workspaces && tsc --noEmit -p tsconfig.lint.json && eslint src",
"lint-fix": "npm run lint-fix --workspaces && tsc --noEmit -p tsconfig.lint.json && eslint --fix src",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "npm run test --workspaces --if-present && mocha --require tsx --recursive \"test/**/*.ts\"",
"test:integration": "mocha --require tsx --recursive \"integration/**/*.ts\"",
"start": "node --enable-source-maps --disable-proto=delete dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contane/foreman.git"
},
"bugs": {
"url": "https://github.com/contane/foreman/issues"
},
"homepage": "https://github.com/contane/foreman#readme",
"engines": {
"node": ">=20",
"npm": ">=9"
},
"devDependencies": {
"@eslint/compat": "1.2.4",
"@meyfa/eslint-config": "8.0.1",
"@types/mocha": "10.0.10",
"@types/ms": "0.7.34",
"@types/node": "22.10.2",
"@types/passport-local": "1.0.38",
"eslint": "9.17.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"mocha": "11.0.1",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"dependencies": {
"@fastify/passport": "3.0.1",
"@fastify/secure-session": "8.1.0",
"@fastify/static": "8.0.3",
"@kubernetes/client-node": "0.22.3",
"cron-parser": "4.9.0",
"deepmerge": "4.3.1",
"dotenv": "16.4.7",
"fastify": "5.2.0",
"ms": "2.1.3",
"openid-client": "5.7.1",
"passport-local": "1.0.0",
"pino": "9.5.0",
"react-router-dom": "7.0.2",
"superstruct": "2.0.2",
"yaml": "2.6.1"
},
"overrides": {
"sodium-native": "4.2.0"
}
}