-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.2 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
{
"name": "api-conseiller-numerique",
"version": "1.0.0",
"license": "AGPL-3.0",
"scripts": {
"dev": "NODE_ENV=development nodemon src",
"lint": "eslint src test --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"smtp:start": "docker rm cnum-smtp; docker run -d --name cnum-smtp -p 1025:1025 -p 8025:8025 mailhog/mailhog",
"smtp:stop": "docker stop cnum-smtp",
"start": "node src",
"test": "jest",
"test:config": "mocha test/config --recursive --exit",
"test:integration": "mocha test/integration --recursive --exit"
},
"dependencies": {
"@aws-sdk/client-s3": "3.679.0",
"@feathersjs/authentication": "4.5.16",
"@feathersjs/authentication-local": "4.5.11",
"@feathersjs/authentication-oauth": "4.5.11",
"@feathersjs/configuration": "4.5.11",
"@feathersjs/errors": "4.5.11",
"@feathersjs/express": "4.5.11",
"@feathersjs/feathers": "4.5.11",
"@gouvfr-anct/lieux-de-mediation-numerique": "1.22.1",
"@sentry/node": "7.102.0",
"@turf/circle": "6.5.0",
"axios": "1.7.7",
"commander": "12.1.0",
"compression": "1.7.4",
"cors": "2.8.5",
"csv-parser": "3.0.0",
"csvtojson": "2.0.10",
"dotenv": "16.4.5",
"ejs": "3.1.10",
"excel4node": "1.8.2",
"exceljs": "4.4.0",
"feathers-mongodb": "6.4.1",
"feathers-mongodb-fuzzy-search": "2.0.1",
"feathers-permissions": "2.1.4",
"file-type": "19.6.0",
"helmet": "7.1.0",
"joi": "17.13.3",
"json2csv": "5.0.6",
"jwt-decode": "4.0.0",
"lodash.capitalize": "^4.2.1",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"mjml": "4.15.3",
"moment": "2.30.1",
"mongodb": "3.7.4",
"multer": "1.4.5-lts.1",
"nodemailer": "6.9.16",
"nodemailer-html-to-text": "3.2.0",
"puppeteer": "22.14.0",
"serve-favicon": "2.5.0",
"sib-api-v3-sdk": "8.5.0",
"slugify": "1.6.6",
"uuid": "10.0.0",
"winston": "3.15.0",
"winston-logstash": "1.2.1"
},
"devDependencies": {
"@faker-js/faker": "8.4.1",
"eslint": "8.56.0",
"jest": "29.7.0",
"mocha": "10.7.3",
"nodemon": "3.1.7"
},
"engines": {
"node": "20.12.2"
},
"overrides": {
"nth-check": "2.0.1"
}
}