nightTab/package.json

60 lines
1.7 KiB
JSON
Raw Normal View History

2019-08-08 13:32:34 +02:00
{
2020-01-21 08:37:20 +01:00
"name": "nightTab",
2021-12-06 00:24:44 +01:00
"version": "7.4.0",
2021-10-01 22:42:43 +02:00
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks with nightTab.",
2019-08-08 13:32:34 +02:00
"main": "index.js",
"scripts": {
2021-08-14 21:00:33 +02:00
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
2021-10-30 10:57:34 +02:00
"lint": "eslint --fix --ext .js,.ts,.test.ts .",
"prepare": "husky install",
"test": "jest tests/*"
2019-08-08 13:32:34 +02:00
},
2021-08-29 10:31:41 +02:00
"keywords": [
"startpage",
"start-page",
"newtabpage",
"new-tab-page",
"tab",
"chrome-extension",
"extension",
"bookmarks",
"links",
"nightTab"
],
"author": "zombieFox",
2020-09-09 16:41:14 +02:00
"license": "GPL-3",
2021-08-29 10:31:41 +02:00
"bugs": {
"url": "https://github.com/zombieFox/nightTab/issues"
},
"homepage": "https://github.com/zombieFox/nightTab#readme",
2019-08-08 13:32:34 +02:00
"devDependencies": {
2021-10-30 10:57:34 +02:00
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
2021-09-27 00:36:27 +02:00
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.3.0",
2021-08-14 21:00:33 +02:00
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
2021-10-30 10:57:34 +02:00
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-unused-imports": "^1.1.5",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.2",
2021-10-30 10:57:34 +02:00
"jest": "^27.2.4",
2021-08-14 21:00:33 +02:00
"mini-css-extract-plugin": "^2.2.0",
"moment": "^2.29.1",
"sortablejs": "^1.13.0",
2021-09-27 00:36:27 +02:00
"style-loader": "^3.3.0",
2021-08-14 21:41:49 +02:00
"terser-webpack-plugin": "^5.1.4",
2021-10-30 10:57:34 +02:00
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webfontloader": "^1.6.28",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
2021-09-27 00:36:27 +02:00
"webpack-dev-server": "^4.2.1",
2021-08-14 21:00:33 +02:00
"webpack-merge": "^5.8.0",
"zip-webpack-plugin": "^4.0.1"
}
2021-10-30 10:57:34 +02:00
}