-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "mandataris-service",
"version": "0.0.3",
"description": "Service to handle backend business logic for mandataris instances",
"main": "app.js",
"author": "redpencil.io",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.10",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"mu-types": "git+https://github.com/rahien/mu-types.git"
},
"scripts": {
"lint:js": "eslint . --cache --ext .ts",
"lint:js:fix": "eslint . --cache --ext .ts --fix",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@lblod/mu-auth-sudo": "^0.6.1",
"body-parser": "^1.19.0",
"cron": "^3.1.7",
"crypto-js": "^4.0.0",
"csv-parse": "^5.5.6",
"express-promise-router": "^4.1.1",
"json-2-csv": "^5.5.6",
"lodash.groupby": "^4.6.0",
"lodash.uniq": "^4.5.0",
"moment": "^2.29.1",
"multer": "^1.4.5-lts.1",
"release-it": "^15.4.1",
"uuid": "^8.3.1"
}
}