-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "excel-parser-uploader",
"version": "1.0.0",
"description": "Data parser and uploader to Firestore of an excel file.",
"main": "index.js",
"scripts": {
"start": "node src/scripts/main.js",
"process:recommendations": "node src/01_recommendations",
"process:calendar": "node src/02_crop_calendar",
"process:details": "node src/03_recommendations_detail",
"find:mismatching": "node src/04_find_mismatching_municipalities",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciatph/excel-parser-uploader.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ciatph/excel-parser-uploader/issues"
},
"homepage": "https://github.com/ciatph/excel-parser-uploader#readme",
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-promise": "^6.1.1",
"hili-lipsum": "^2.0.1"
},
"dependencies": {
"csv-firestore": "^1.0.9",
"dotenv": "^16.0.3",
"xlsx": "^0.18.5"
}
}