BetterDiscordApp-rauenzi/package.json

51 lines
1.9 KiB
JSON
Raw Normal View History

2019-05-28 20:19:48 +02:00
{
2020-07-29 21:06:54 +02:00
"name": "betterdiscord",
2020-07-19 06:34:23 +02:00
"version": "1.0.0",
2019-05-28 20:19:48 +02:00
"description": "Enhances Discord adding functionality and themes.",
"main": "src/index.js",
2019-05-28 20:19:48 +02:00
"scripts": {
2019-05-28 23:27:25 +02:00
"build": "webpack --progress --colors",
2019-06-07 05:52:08 +02:00
"watch": "webpack --progress --colors --watch",
"build-prod": "webpack --progress --colors --mode production -o dist/remote.js --devtool none",
2020-07-23 22:51:58 +02:00
"lint-js": "eslint --ext .jsx,.js src/",
"build-css": "gulp build-css",
"watch-css": "gulp watch-css",
"build-prod-css": "gulp minify-css",
"lint-css": "stylelint src/styles/*.css && stylelint src/styles/**/*.css",
"prod": "npm run build-prod && npm run build-prod-css",
2020-07-23 22:51:58 +02:00
"lint": "npm run lint-js && npm run lint-css",
"test": "mocha --require @babel/register --recursive \"./tests/*.js\"",
"deploy": "npm run prod"
2019-05-28 20:19:48 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/rauenzi/BetterDiscordApp.git"
},
"author": "rauenzi",
"bugs": {
"url": "https://github.com/rauenzi/BetterDiscordApp/issues"
},
"homepage": "https://github.com/rauenzi/BetterDiscordApp",
2019-05-28 20:19:48 +02:00
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"circular-dependency-plugin": "^5.2.0",
2020-07-23 22:51:58 +02:00
"eslint": "^7.5.0",
2020-10-04 02:59:01 +02:00
"eslint-plugin-react": "^7.21.3",
"gulp": "^4.0.2",
2020-07-23 22:51:58 +02:00
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"mocha": "^8.1.1",
2020-07-23 22:51:58 +02:00
"postcss-csso": "^4.0.0",
"postcss-easy-import": "^3.0.0",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
2019-05-28 20:19:48 +02:00
}
}