-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "@contane/foreman",
"version": "0.2.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 --workspaces --if-present && mocha --require tsx --recursive \"test/**/*.ts\"",
"start": "node --disable-proto=delete dist/server.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": "6.0.0",
"@types/mocha": "10.0.7",
"@types/ms": "0.7.34",
"@types/node": "20.14.10",
"@types/passport-local": "1.0.38",
"eslint": "8.57.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"mocha": "10.6.0",
"tsx": "4.16.2",
"typescript": "5.5.3"
},
"dependencies": {
"@fastify/passport": "2.5.0",
"@fastify/secure-session": "7.5.1",
"@fastify/static": "7.0.4",
"@kubernetes/client-node": "0.21.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.2.0",
"react-router-dom": "6.24.1",
"superstruct": "2.0.2",
"yaml": "2.4.5"
}
}