removeddit/package.json

60 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2018-01-09 01:09:34 +00:00
{
"name": "removeddit",
2018-10-21 19:42:33 +00:00
"version": "1.1.8",
2018-01-09 01:09:34 +00:00
"description": "View removed comments from reddit",
"main": "src/index.js",
"repository": {
"type": "git",
2021-10-06 23:42:45 +00:00
"url": "git+https://github.com/gurnec/removeddit.git"
2018-01-09 01:09:34 +00:00
},
"keywords": [
"reddit",
"comments",
"removed",
"deleted"
],
"author": "Jesper Wrang",
2018-02-18 00:31:59 +00:00
"license": "GPL-3.0",
2018-01-09 01:09:34 +00:00
"bugs": {
2021-10-06 23:42:45 +00:00
"url": "https://github.com/gurnec/removeddit/issues"
2018-01-09 01:09:34 +00:00
},
2021-10-06 23:42:45 +00:00
"homepage": "https://github.com/gurnec/removeddit#readme",
2018-01-10 19:08:41 +00:00
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"css": "sass -s compressed src/sass/index.sass >dist/main.css && sass -s compressed node_modules/css-toggle-switch/dist/toggle-switch-px.css >>dist/main.css",
"eslint": "eslint src/*.js 'src/api/**' 'src/pages/**'"
2018-01-10 19:08:41 +00:00
},
2018-01-09 01:09:34 +00:00
"dependencies": {
"@ali-tas/htmldiff-js": "^1.1.3",
2023-04-25 14:32:28 +00:00
"core-js": "^3.30.1",
"npm": "^8.19.4",
2021-10-06 21:57:36 +00:00
"react": "^16.14.0",
"react-dom": "^16.14.0",
2022-09-19 14:52:51 +00:00
"react-router-dom": "^5.3.4",
2022-03-23 15:26:07 +00:00
"snuownd": "github:JordanMilne/snuownd",
2018-07-16 18:12:01 +00:00
"unstated": "^2.1.1",
2021-10-06 21:57:36 +00:00
"whatwg-fetch": "^3.6.2"
2018-01-09 01:09:34 +00:00
},
"devDependencies": {
2023-04-25 14:32:28 +00:00
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
2022-07-20 18:31:13 +00:00
"@babel/preset-react": "^7.18.6",
2023-04-25 14:32:28 +00:00
"acorn": "^8.8.2",
2022-11-07 18:39:49 +00:00
"babel-loader": "^8.3.0",
"css-toggle-switch": "^4.1.0",
2023-04-25 14:32:28 +00:00
"eslint": "^8.39.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
2023-04-25 14:32:28 +00:00
"sass": "^1.62.0",
"webpack": "^5.80.0",
2022-06-13 16:25:42 +00:00
"webpack-cli": "^4.10.0",
2023-04-25 14:32:28 +00:00
"webpack-dev-server": "^4.13.3"
2022-03-23 15:26:07 +00:00
},
"overrides": {
"minimist": "git+https://github.com/meszaros-lajos-gyorgy/minimist-lite#semver:^v2.2.1"
2018-01-09 01:09:34 +00:00
}
2021-10-06 21:57:36 +00:00
}