-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "cessda.cdc.fuji.runner",
"version": "1.0.0",
"description": "API Runner for CDC FAIR assessment",
"main": "src/sitemaps.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint . --ext .ts",
"watch:build": "tsc --watch",
"start": "npm-run-all clean build --parallel watch:build"
},
"author": "github@kpapag",
"license": "Apache-2.0",
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/json2csv": "^5.0.3",
"@types/node": "^18.19.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@elastic/elasticsearch": "^8.12.0",
"@google-cloud/storage": "^7.7.0",
"axios": "^1.6.5",
"dotenv": "^16.4.1",
"json2csv": "^5.0.7",
"sitemapper": "^3.1.8",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
}
}