mangadex/package.json

39 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-03-14 17:31:55 -04:00
{
"name": "mangadex",
"version": "1.0.0",
"description": "MangaDex JS scripts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2021-03-19 16:06:32 -04:00
"build": "webpack --config=webpack.config.js --mode=production && webpack --config=webpack-reader.config.js --mode=production",
2021-03-14 17:31:55 -04:00
"build-watch": "webpack --config=webpack.config.js --mode=production --watch",
2021-03-19 16:06:32 -04:00
"build-dev": "webpack --config=webpack.config.js --mode=development",
"build-reader": "webpack --config=webpack-reader.config.js --mode=development"
2021-03-14 17:31:55 -04:00
},
"author": "MangaDex",
"private": true,
"devDependencies": {
2021-03-19 16:06:32 -04:00
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"core-js": "^3.8.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
2021-03-14 17:31:55 -04:00
},
"dependencies": {
2021-03-19 16:06:32 -04:00
"@babel/runtime": "^7.12.5",
"abortcontroller-polyfill": "^1.7.1",
"date-fns": "^2.16.1",
"dotenv-webpack": "^1.8.0",
2021-03-14 17:31:55 -04:00
"eligrey-classlist-js-polyfill": "^1.2.20180112",
2021-03-19 16:06:32 -04:00
"formdata-polyfill": "^3.0.20",
"js-cookie": "^2.2.1",
"natsort": "^2.0.2",
2021-03-14 17:31:55 -04:00
"vtt.js": "^0.13.0",
2021-03-19 16:06:32 -04:00
"whatwg-fetch": "^3.5.0",
"wolfy87-eventemitter": "^5.2.9"
2021-03-14 17:31:55 -04:00
}
}