BetterDiscordApp-rauenzi/package.json

52 lines
2.1 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 --display errors-only --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": "postcss src/styles/index.css -o dist/style.css",
"watch-css": "postcss src/styles/index.css -o dist/style.css -w",
"build-prod-css": "postcss src/styles/index.css -o dist/style.css --no-map --env production",
"lint-css": "stylelint src/styles/*.css && stylelint src/styles/**/*.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\"",
"lint-prod": "npm run lint-js -- --quiet && npm run lint-css -- --quiet",
2021-03-01 01:22:45 +01:00
"test-prod": "npm run test -- --reporter min"
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.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"circular-dependency-plugin": "^5.2.0",
2021-03-01 01:22:45 +01:00
"css-loader": "^5.1.0",
"eslint": "^7.12.0",
"eslint-plugin-react": "^7.21.5",
"mocha": "^8.2.0",
"postcss": "^8.1.4",
"postcss-cli": "^8.1.0",
2020-07-23 22:51:58 +02:00
"postcss-csso": "^4.0.0",
"postcss-easy-import": "^3.0.0",
2021-03-01 01:22:45 +01:00
"postcss-loader": "^5.0.0",
"stylelint": "^13.7.2",
2020-07-23 22:51:58 +02:00
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
2019-05-28 20:19:48 +02:00
}
}