-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
113 lines (113 loc) · 3.02 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@curveball/a12n-server",
"version": "0.26.7",
"description": "A ready-to-launch User and Authentication system for those that don't want to build it",
"type": "module",
"exports": "./dist/index.js",
"homepage": "https://github.com/curveball/a12n-server#readme",
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"scripts": {
"prepublishOnly": "make build",
"test": "make test",
"lint": "make lint",
"fix": "make fix",
"tsc": "tsc",
"start": "make start",
"start:watch": "tsc-watch --onSuccess 'node dist/app.js'",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/a12n-server.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE",
"src"
],
"contributors": [
{
"name": "Evert Pot",
"email": "evert@badgateway.net",
"url": "https://evertpot.com"
},
{
"name": "Ju-Hang Sin",
"email": "ju@badgateway.net",
"url": "https://juhangsin.net"
},
{
"name": "Matthew Mihok",
"email": "matthew@mihok.systems",
"url": "https://mihok.systems"
}
],
"dependencies": {
"@curveball/accesslog": "^1.0.0",
"@curveball/bodyparser": "^1.0.0",
"@curveball/browser": "^1.1.1",
"@curveball/controller": "^1.0.0",
"@curveball/core": "^1.0.0",
"@curveball/cors": "^1.0.0",
"@curveball/http-errors": "^1.0.1",
"@curveball/kernel": "^1",
"@curveball/links": "^1.0.1",
"@curveball/problem": "^1.0.0",
"@curveball/router": "^2.0.0",
"@curveball/session": "^1.0.0",
"@curveball/session-redis": "^1.0.0",
"@curveball/validator": "^1.0.0",
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.0",
"bcrypt": "^5.0.1",
"csv-stringify": "^6.0.5",
"db-errors": "^0.2.3",
"dotenv": "^16.0.3",
"eff-diceware-passphrase": "^3.0.0",
"geoip-lite": "^1.0.10",
"handlebars": "^4.7.7",
"jose": "^5.9.3",
"knex": "^3.0.1",
"mysql2": "^3.11.3",
"nodemailer": "^6.9.15",
"otplib": "^12.0.1",
"pg": "^8.13.0",
"qrcode": "^1.3.2",
"sqlite3": "^5.0.6"
},
"peerDependencies": {
"@curveball/kernel": "^1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.3",
"@types/eff-diceware-passphrase": "^3.0.2",
"@types/geoip-lite": "^1.4.1",
"@types/node": "^18.19.39",
"@types/nodemailer": "^6.4.1",
"@types/qrcode": "^1.4.0",
"@types/sinon": "^17.0.1",
"@types/sinon-chai": "^3.2.8",
"chai": "^4.5.0",
"chai-as-promised": "^8.0.0",
"hal-types": "^1.7.6",
"json-schema-to-typescript": "^15.0.1",
"mysql-types-generator": "^2.0.0",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"tsc-watch": "^6.0.4",
"tsx": "^4.16.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.13.0"
},
"engines": {
"node": ">= 18"
},
"bin": "./bin/a12n-server",
"types": "dist/"
}