flashlang/package.json

37 lines
798 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",
"dependencies": {},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"html-loader": "^1.1.0",
"html-webpack-plugin": "3.2.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"zip-webpack-plugin": "^3.0.0"
},
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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
}