forked from curveball/a12n-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.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
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
114
115
116
117
118
119
120
121
{
"name": "@curveball/a12n-server",
"version": "0.25.4",
"main": "dist/index.js",
"description": "A ready-to-launch User and Authentication system for those that don't want to build it",
"scripts": {
"prepublishOnly": "make build",
"test": "make lint test",
"tsc": "tsc",
"start": "node ./dist/app.js",
"start:watch": "tsc-watch --onSuccess 'node dist/app.js'"
},
"bin": "./bin/a12n-server",
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/a12n-server.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE",
"assets",
"templates",
".env.defaults",
"schemas"
],
"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"
}
],
"homepage": "https://github.com/curveball/a12n-server#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/geoip-lite": "^1.4.1",
"@types/mocha": "^10.0.2",
"@types/node": "^16.11.26",
"@types/nodemailer": "^6.4.1",
"@types/qrcode": "^1.4.0",
"@types/sinon": "^17.0.1",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.0.1",
"hal-types": "^1.7.6",
"mocha": "^10.0.0",
"mysql-types-generator": "^1.0.3",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.0.0",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"types": "dist/",
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@curveball/accesslog": "^0.4.0",
"@curveball/bodyparser": "^0.6.1",
"@curveball/browser": "^0.20.3",
"@curveball/controller": "^0.5.0",
"@curveball/core": "^0.21.1",
"@curveball/cors": "^0.3.0",
"@curveball/http-errors": "^0.5.0",
"@curveball/kernel": "^0.21.2",
"@curveball/links": "^0.3.0",
"@curveball/problem": "^0.5.0",
"@curveball/router": "^0.6.0",
"@curveball/session": "^0.10.0",
"@curveball/session-redis": "^0.6.0",
"@curveball/validator": "^0.10.0",
"@simplewebauthn/browser": "^8.3.1",
"@simplewebauthn/server": "^8.2.0",
"bcrypt": "^5.0.1",
"csv-stringify": "^6.0.5",
"db-errors": "^0.2.3",
"dotenv": "^16.0.3",
"geoip-lite": "^1.0.10",
"handlebars": "^4.7.7",
"jose": "^5.9.4",
"knex": "^3.0.1",
"mysql2": "^3.6.3",
"nodemailer": "^6.5.0",
"otplib": "^12.0.1",
"pg": "^8.7.1",
"qrcode": "^1.3.2",
"sqlite3": "^5.0.6"
},
"mocha": {
"require": [
"ts-node/register"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
}
}