-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "@ban-team/id-fix",
"version": "0.1.0",
"description": "Id-fix API is a service that receives BAL format data, handles it and send it to the BAN plateforme",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "npx eslint .",
"format": "prettier --write .",
"build": "npx tsc",
"test": "vitest",
"updateBAL": "ts-node --esm script/update-bal.ts",
"initBALIntoBAN": "ts-node --esm script/init-bal-into-ban.ts",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"ts": "ts-node"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/minimist": "^1.2.5",
"@types/object-hash": "^3.0.6",
"@types/papaparse": "^5.3.15",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"nock": "^14.0.0",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"https-proxy-agent": "^7.0.6",
"undici": "^6.20.1",
"node-fetch": "^3.3.2"
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.2",
"minimist": "^1.2.8",
"object-hash": "^3.0.0",
"papaparse": "^5.5.2",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
}
}