Files
excel-exporter/package.json
2020-05-24 19:31:01 +08:00

25 lines
601 B
JSON

{
"name": "tiny-nodejs-starter-kit",
"version": "1.0.0",
"main": "index.js",
"license": "BSD",
"scripts": {
"dev": "node_modules/.bin/webpack --config webpack.config.js --watch",
"compile": "node_modules/.bin/webpack --config webpack.config.js --env.production",
"build": "node ./tools/build.js"
},
"devDependencies": {
"@types/node": "^14.0.1",
"shelljs": "^0.8.4",
"ts-loader": "^7.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"colors": "^1.4.0",
"xlsx": "^0.16.0"
}
}