-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "codi-api",
"version": "1.0.0",
"description": "API to Generate Codi Payments via QR codes and Push notifications",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "jest",
"license-check": "license-checker --summary",
"license-report": "mkdir -p licenses && license-checker --json > licenses/licenses.json && license-checker --production --markdown > licenses/THIRD-PARTY-LICENSES.md",
"license-compliance": "license-checker --onlyAllow 'MIT;Apache-2.0;ISC;BSD-2-Clause;BSD-3-Clause;0BSD;CC0-1.0;Unlicense;WTFPL;Python-2.0;BlueOak-1.0.0;CC-BY-3.0;CC-BY-4.0;(BSD-3-Clause OR GPL-2.0);(MIT AND CC-BY-3.0);(MIT OR CC0-1.0)' --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/portfedh/codi-api.git"
},
"author": "Pablo Cruz Lemini",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/portfedh/codi-api/issues"
},
"homepage": "https://github.com/portfedh/codi-api#readme",
"dependencies": {
"@supabase/supabase-js": "^2.99.2",
"axios": "^1.13.6",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"express-validator": "^7.3.1",
"glob": "^13.0.6",
"helmet": "^8.1.0",
"jest": "^30.3.0",
"lru-cache": "^11.2.7",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"morgan": "^1.10.1",
"node-cache": "^5.1.2",
"node-forge": "^1.3.3",
"qrcode": "^1.5.4",
"rotating-file-stream": "^3.2.9",
"sanitize-html": "^2.17.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"license-checker": "^25.0.1",
"nodemon": "^3.1.14"
},
"jest": {
"setupFiles": [
"./jest.setup.js"
],
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"coverageDirectory": "coverage"
}
}