forked from jason-fox/csv-to-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 879 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 879 Bytes
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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint": "eslint . --cache --fix",
"prettier": "prettier --parser flow --config ./.prettierrc.json --write **/**/*.js **/*.js *.js",
"test": "eslint ."
},
"dependencies": {
"debug": "~4.3.1",
"exceljs": "^4.0.1",
"express": "~4.17.1",
"fast-csv": "^4.3.2",
"got": "^11.8.1",
"http-status-codes": "^2.1.4",
"json2csv": "^5.0.3",
"moment": "~2.29.1",
"moment-timezone": "~0.5.25",
"mongodb": "3.6.3",
"mongoose": "5.11.10",
"multer": "^1.4.2",
"read-excel-file": "^5.0.0",
"underscore": "^1.12.0"
},
"devDependencies": {
"ajv": "^7.0.3",
"eslint": "^7.5.0",
"eslint-config-tamia": "^7.2.5",
"eslint-plugin-prettier": "^3.1.4",
"memfs": "3.2.0",
"prettier": "^2.0.5"
}
}