flashlang/package.json

46 lines
1,011 B
JSON
Raw Normal View History

2020-07-19 22:40:30 +02:00
{
2020-07-19 23:02:47 +02:00
"name": "lingo",
"version": "1.0.0",
"description": "Lingo is a small browser extension to help you learn languages",
"main": "webpack.config.js",
2020-07-27 19:10:45 +02:00
"dependencies": {
"tippy.js": "^6.2.5"
},
2020-07-19 23:02:47 +02:00
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
2020-07-27 00:55:08 +02:00
"css-loader": "^4.0.0",
2020-07-19 23:02:47 +02:00
"html-loader": "^1.1.0",
2020-07-27 00:55:08 +02:00
"html-webpack-plugin": "4.3.0",
2020-07-19 23:02:47 +02:00
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.5",
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",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
2020-07-19 23:02:47 +02:00
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
2020-07-23 16:48:51 +02:00
"web-ext": "^4.3.0",
"webextension-polyfill-ts": "^0.19.0",
2020-07-19 23:02:47 +02:00
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"zip-webpack-plugin": "^3.0.0"
},
"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",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
2020-07-19 23:02:47 +02:00
"*/**": "prettier --write"
2020-07-19 23:02:47 +02:00
}
2020-07-19 22:40:30 +02:00
}