-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 745 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 745 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
{
"name": "excel-splitter-nodejs",
"version": "1.0.0",
"description": "A Nodejs app that splits into unique excel based on a creteria ",
"main": "app.js",
"scripts": {
"start": "node app.js",
"build": "webpack -p --config ./webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Deepak <deepak311997@gmail.com>",
"license": "MIT",
"dependencies": {
"exceljs": "^3.8.2",
"express": "^4.17.1",
"multer": "^1.4.2",
"xlsx": "^0.15.6",
"zip-folder": "^1.0.0"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"terser-webpack-plugin": "^3.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}