-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.26 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.26 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
90
91
92
93
94
95
{
"name": "seamless-auth-api",
"version": "0.1.10",
"description": "Seamless Auth API - A web application server for supporting a Seamless Auth server instance.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch --env-file .env src/server.ts",
"start": "node dist/server.js",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"test:ci": "CI=true vitest",
"test:e2e": "CI=false vitest",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"db:create": "env-cmd -f .env sequelize-cli db:create || sequelize-cli db:create",
"db:drop": "env-cmd -f .env sequelize-cli db:drop || sequelize-cli db:drop",
"db:refresh": "env-cmd -f .env sequelize-cli db:drop && sequelize-cli db:create",
"migrate:create": "env-cmd -f .env sequelize-cli migration:generate --name",
"migrate:up": "env-cmd -f .env sequelize-cli db:migrate || sequelize-cli db:migrate",
"migrate:down": "env-cmd -f .env sequelize-cli db:migrate:undo",
"migrate:reset": "env-cmd -f .env sequelize-cli db:migrate:undo:all && sequelize-cli db:migrate",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fells-code/seamless-auth-api.git"
},
"author": "Fells Code LLC",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/fells-code/seamless-auth-api/issues"
},
"homepage": "https://github.com/fells-code/seamless-auth-api#readme",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.3",
"@seamless-auth/types": "^0.1.3",
"@sequelize/postgres": "^7.0.0-alpha.46",
"@simplewebauthn/server": "^13.1.1",
"@types/bcrypt": "^6.0.0",
"base64url": "^3.0.1",
"bcrypt-ts": "^7.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.5.0",
"express-slow-down": "^2.0.3",
"helmet": "^8.1.0",
"jose": "^6.0.11",
"jsonwebtoken": "^9.0.2",
"libphonenumber-js": "^1.12.7",
"pg": "^8.15.6",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"sequelize-cli": "^6.6.2",
"swagger-ui-express": "^5.0.1",
"validator": "^13.15.0",
"winston": "^3.14.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.25.1",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.24",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.18.12",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.18",
"env-cmd": "^11.0.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.8.1",
"sqlite3": "^6.0.1",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.3"
}
}