diawi-nodejs-uploader/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2020-09-24 06:33:04 +00:00
{
"name": "DiawiNodeLoader",
"version": "0.0.1",
"main": "index.js",
"author": "Andrey Ponomarenko",
"license": "MIT",
2020-09-24 11:18:42 +00:00
"scripts": {
"r": "yarn webpack && node dist/index.js"
},
2020-09-24 06:33:04 +00:00
"dependencies": {
2020-09-24 11:18:42 +00:00
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
2020-09-24 06:33:04 +00:00
"promise.allsettled": "^1.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
2020-09-24 06:36:22 +00:00
"@types/fs-extra": "^9.0.1",
2020-09-24 11:18:42 +00:00
"@types/node-fetch": "^2.5.7",
2020-09-24 06:36:22 +00:00
"@types/promise.allsettled": "^1.0.3",
2020-09-24 06:33:04 +00:00
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
2020-09-24 06:36:22 +00:00
"eslint-plugin-react": "^7.20.4",
2020-09-24 11:18:42 +00:00
"husky": "^4.3.0",
"ts-loader": "^8.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
2020-09-24 06:33:04 +00:00
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}