flashlang/package.json
2020-07-27 00:55:08 +02:00

42 lines
960 B
JSON

{
"name": "lingo",
"version": "1.0.0",
"description": "Lingo is a small browser extension to help you learn languages",
"main": "webpack.config.js",
"dependencies": {},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "4.3.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"web-ext": "^4.3.0",
"webextension-polyfill-ts": "^0.19.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"zip-webpack-plugin": "^3.0.0"
},
"scripts": {
"build": "webpack",
"run:firefox": "web-ext run --source-dir ./dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**": "prettier --write"
}
}