-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.71 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "login-server",
"version": "0.9.0",
"description": "Login Server",
"homepage": "https://github.com/gbv/login-server",
"repository": {
"type": "git",
"url": "https://github.com/gbv/login-server.git"
},
"bugs": {
"url": "https://github.com/gbv/login-server/issues"
},
"type": "module",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test mocha --exit --timeout 10000 --slow 2000",
"lint": "eslint",
"fix": "eslint --fix",
"start": "nodemon server.js",
"lint-staged": "lint-staged",
"indexes": "node utils/addIndexes.js",
"yesno": "node -e \"const yesno = require('yesno'); yesno({ question: 'Are you sure you want to continue?' }).then(ok => process.exit(ok ? 0 : 1));\"",
"release": "test $(git rev-parse --abbrev-ref HEAD) = dev && git pull && npm test && npm version $SEMVER && npm run --silent yesno && (git push && git checkout master && git merge dev && git push --follow-tags && git checkout dev) || (git tag -d $(git describe --tags) && git reset --hard HEAD~1)",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release",
"prepare": "husky || true"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
],
"*.js": [
"eslint --fix"
]
},
"author": "Jakob Voß <jakob.voss@gbv.de>",
"contributors": [
"Stefan Peters"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.7.9",
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^6.0.0",
"dotenv": "^17.4.2",
"ejs": "^5.0.2",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"express-session": "^1.18.1",
"express-ws": "^5.0.2",
"helmet": "^8.0.0",
"inquirer": "^12.2.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"meow": "^14.1.0",
"mongodb": "^7.2.0",
"mongoose": "^9.5.0",
"node-rsa": "^1.1.1",
"nodemon": "^3.1.7",
"passport": "~0.7.0",
"passport-easydb": "^0.2.0",
"passport-github": "^1.1.0",
"passport-ldapauth": "^3.0.1",
"passport-local": "^1.0.0",
"passport-mediawiki-oauth": "git+https://abc@github.com/stefandesu/passport-mediawiki-oauth#0158a4f",
"passport-oauth2": "^1.8.0",
"passport-openidconnect": "^0.1.2",
"passport-orcid": "0.0.4",
"portfinder": "^1.0.32",
"should-send-same-site-none": "^2.0.5"
},
"devDependencies": {
"chai": "^6.2.2",
"eslint": "^10.2.1",
"eslint-config-gbv": "~2.7",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mocha": "^11.0.1",
"superagent": "^10.1.1",
"supertest": "^7.0.0",
"yesno": "^0.4.0"
}
}