-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1018 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1018 Bytes
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
{
"name": "befriend-data",
"productName": "Befriend Data",
"version": "dev",
"description": "Data API for Befriend Backend",
"license": "LGPL-3.0-or-later",
"repository": "befriend-app/befriend-data",
"homepage": "https://befriend.app",
"contributors": [
{
"name": "Eugene Light",
"email": "eugene@befriend.app"
}
],
"main": "server.js",
"scripts": {
"format": "npx prettier . --write",
"lint": "npx eslint ."
},
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"mysql2": "^3.11.0",
"redis": "^4.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"prettier": "3.3.3"
}
}