This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 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
{
"name": "@boklisten/bl-api",
"version": "1.13.9",
"description": "",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"dev": "tsx watch ./src/index.ts",
"build": "pkgroll --minify --tsconfig=tsconfig.build.json",
"serve": "node ./dist/index.js",
"prettier": "prettier --write . --ignore-path=.gitignore",
"prettier:check": "prettier --check . --ignore-path=.gitignore",
"lint": "eslint src --ignore-pattern \"**/*.spec.ts\"",
"type-check": "tsc --noEmit",
"test": "API_ENV=test mocha \"src/**/*.spec.ts\""
},
"license": "ISC",
"dependencies": {
"@boklisten/bl-email": "^1.8.2",
"@boklisten/bl-model": "^0.26.7",
"@boklisten/bl-post-office": "^0.5.56",
"@napi-rs/image": "^1.9.2",
"@sendgrid/mail": "^8.1.4",
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^8.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/mocha": "^10.0.7",
"@types/node": "^22.10.2",
"@types/passport": "^1.0.17",
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/pdfkit": "^0.13.7",
"@types/qrcode": "^1.5.5",
"@types/request-promise": "^4.1.51",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/validator": "^13.12.2",
"canvas": "^3.0.0-rc2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"jsbarcode": "^3.11.6",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"mongodb": "^6.12.0",
"mongoose": "^8.9.0",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pdfkit": "^0.15.2",
"qrcode": "^1.5.4",
"qs": "^6.13.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"twilio": "^5.4.0",
"validator": "^13.12.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"mocha": "^10.7.3",
"pkgroll": "^2.5.1",
"prettier": "^3.4.2",
"sinon": "^18.0.0",
"sinon-chai": "^3.6.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/boklisten/bl_api.git"
},
"private": false,
"bugs": {
"url": "https://github.com/boklisten/bl_api/issues"
},
"homepage": "https://github.com/boklisten/bl_api#readme"
}