forked from voidauth/voidauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 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
{
"name": "voidauth",
"main": "server/index.ts",
"type": "module",
"engines": {
"node": ">=24.11.x"
},
"scripts": {
"start": "concurrently \"npm run server:watch\" \"npm run frontend:watch\"",
"server:watch": "nodemon --ext \"ts,js,json\" --watch server/ --watch shared/ --exec \"tsc && npm run server:build && tsx --env-file-if-exists=.env ./server/index.ts\"",
"server:build": "tsx ./esbuild.config.ts",
"frontend:watch": "cd frontend && npm run watch",
"postinstall": "husky",
"lint": "eslint",
"prettier": "prettier --write \"**/*\""
},
"author": "Derek Paschal",
"license": "SEE LICENSE IN LICENSE FILE",
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"dependencies": {
"@angular-devkit/schematics": "^21.1.3",
"@angular/material": "^21.1.3",
"@simplewebauthn/server": "^13.2.2",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"better-sqlite3": "^12.6.2",
"dockerode": "^4.0.9",
"ejs": "^3.1.10",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"generate-password": "^1.7.1",
"helmet": "^8.1.0",
"husky": "^9.1.7",
"jose": "^6.1.3",
"keygrip": "^1.1.0",
"knex": "^3.1.0",
"matcher": "^6.0.0",
"nodemailer": "^7.0.13",
"oidc-provider": "^9.6.0",
"otpauth": "^9.5.0",
"pg": "^8.18.0",
"psl": "^1.15.0",
"pug": "^3.0.3",
"sass": "^1.97.3",
"sqlite3": "^5.1.7",
"tsx": "^4.21.0",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/dockerode": "^4.0.1",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/madge": "^5.0.3",
"@types/node": "^24.10.11",
"@types/nodemailer": "^7.0.9",
"@types/oidc-provider": "^9.5.0",
"@types/psl": "^1.1.3",
"@types/pug": "^2.0.10",
"@types/yargs": "^17.0.35",
"concurrently": "^9.2.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"madge": "^8.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}