-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
{
"name": "amber",
"description": "Electronic Data Capture system",
"version": "1.3.6",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Yannick Marcon",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": ">= 16.14.0",
"npm": ">= 8.5.0"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json --fix",
"dev": "nodemon src/",
"prof": "node --prof src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"dependencies": {
"@feathers-plus/validate-joi": "^3.4.0",
"@feathersjs/authentication": "^4.5.18",
"@feathersjs/authentication-local": "^4.5.18",
"@feathersjs/authentication-oauth": "^4.5.18",
"@feathersjs/configuration": "^4.5.17",
"@feathersjs/errors": "^4.5.17",
"@feathersjs/express": "^4.5.18",
"@feathersjs/feathers": "^4.5.17",
"@feathersjs/transport-commons": "^4.5.18",
"@json2csv/plainjs": "^7.0.2",
"archiver": "^5.3.0",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"feathers-authentication-hooks": "^1.0.2",
"feathers-authentication-management": "^4.0.2",
"feathers-casl": "^0.6.0",
"feathers-mailer": "^3.1.0",
"feathers-mongoose": "^8.3.3",
"feathers-totp-2fa": "^0.5.1",
"feathers-validate-joi": "^4.0.1",
"helmet": "^4.6.0",
"mongodb-core": "^3.2.7",
"mongoose": "^5.13.9",
"nodemailer-sendinblue-transport": "^2.0.1",
"nodemailer-smtp-transport": "^2.4.2",
"otplib": "^12.0.1",
"serve-favicon": "^2.5.0",
"string-template": "^1.0.0",
"winston": "^3.3.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
"xss": "^1.0.11"
},
"devDependencies": {
"eslint": "^7.25.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.7"
}
}