flashlang/package.json

60 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2020-07-19 22:40:30 +02:00
{
2022-04-22 18:45:52 +02:00
"name": "Flashlang",
2020-07-19 23:02:47 +02:00
"version": "1.0.0",
2022-04-22 18:45:52 +02:00
"description": "Flashlang is a small browser extension to help you learn languages",
2020-07-19 23:02:47 +02:00
"main": "webpack.config.js",
2020-07-27 19:10:45 +02:00
"dependencies": {
"@asmagin/google-translate-api": "git+https://github.com/MaeIsBad/google-translate-api.git",
2020-08-20 15:40:04 +02:00
"@sveltejs/svelte-virtual-list": "^3.0.1",
2022-04-21 20:01:59 +02:00
"svelte-feather-icons": "^4.0.0",
"svelte-select": "^4.4.7",
"tippy.js": "^6.2.5",
"webextension-polyfill": "^0.9.0"
2020-07-27 19:10:45 +02:00
},
2020-07-19 23:02:47 +02:00
"devDependencies": {
2022-04-21 20:01:59 +02:00
"@tsconfig/svelte": "^3.0.0",
"@types/webextension-polyfill": "^0.8.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
2020-08-02 20:48:29 +02:00
"file-loader": "^6.0.0",
2022-04-21 20:01:59 +02:00
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
2020-07-19 23:02:47 +02:00
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.5",
2022-04-21 20:01:59 +02:00
"prettier-plugin-svelte": "^2.7.0",
2020-07-31 00:29:40 +02:00
"raw-loader": "^4.0.1",
2020-07-23 16:48:51 +02:00
"sass": "^1.26.10",
2022-04-21 20:01:59 +02:00
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
2020-08-10 00:37:38 +02:00
"svelte": "^3.24.1",
2022-04-21 20:01:59 +02:00
"svelte-check": "^2.7.0",
"svelte-loader": "^3.1.2",
2020-08-10 00:37:38 +02:00
"svelte-preprocess": "^4.0.10",
2022-04-21 20:01:59 +02:00
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"web-ext": "^6.8.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"worklet-loader": "^2.0.0",
"zip-webpack-plugin": "^4.0.1"
2020-07-19 23:02:47 +02:00
},
"scripts": {
"build": "webpack",
2020-07-23 16:48:51 +02:00
"run:firefox": "web-ext run --source-dir ./dist"
2020-07-19 23:02:47 +02:00
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
2020-08-20 15:40:04 +02:00
"*/**": [
"eslint --fix ",
"prettier --write"
]
2020-07-19 23:02:47 +02:00
}
2020-07-19 22:40:30 +02:00
}