-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.96 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
{
"name": "@contane/foreman",
"version": "0.4.0",
"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 --ignore-path .gitignore 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 --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": {
"@meyfa/eslint-config": "7.0.0",
"@types/mocha": "10.0.7",
"@types/ms": "0.7.34",
"@types/node": "20.16.5",
"@types/passport-local": "1.0.38",
"eslint": "8.57.1",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"mocha": "10.7.3",
"tsx": "4.19.1",
"typescript": "5.6.2"
},
"dependencies": {
"@fastify/passport": "2.5.0",
"@fastify/secure-session": "7.5.1",
"@fastify/static": "7.0.4",
"@kubernetes/client-node": "0.22.0",
"cron-parser": "4.9.0",
"deepmerge": "4.3.1",
"dotenv": "16.4.5",
"fastify": "4.28.1",
"ms": "2.1.3",
"openid-client": "5.6.5",
"passport-local": "1.0.0",
"pino": "9.4.0",
"react-router-dom": "6.26.2",
"superstruct": "2.0.2",
"yaml": "2.5.0"
}
}