it-tools/package.json

94 lines
2.8 KiB
JSON
Raw Normal View History

2020-12-21 22:06:13 +01:00
{
"name": "it-tools",
2021-05-17 23:39:13 +02:00
"version": "2.0.0-beta.0",
2021-05-31 22:41:10 +02:00
"private": false,
"description": "Aggregated set of useful tools that every developer may need once in a while.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/it-tools"
},
"funding": "https://github.com/sponsors/CorentinTh",
"author": "Corentin Th <corentin.thomasset74+npm@gmail.com> (https://github.com/CorentinTh)",
"homepage": "https://it-tools.tech",
"bugs": "https://github.com/CorentinTh/it-tools/issues",
"keywords": [
"productivity",
"converter",
"website",
"vuejs",
"tools",
"frontend",
"tool",
"developer-tools",
"developer-productivity"
],
2020-12-21 22:06:13 +01:00
"scripts": {
2021-05-28 19:44:27 +02:00
"dev": "nuxt",
2020-12-21 22:49:27 +01:00
"build": "npm run generate",
2021-05-28 19:44:27 +02:00
"start": "nuxt start",
"generate": "nuxt generate",
"lint:commit": "commitlint --from $(git rev-list --max-parents=0 HEAD)",
2021-05-22 00:45:00 +02:00
"lint:js": "eslint --ext .js,.vue --ignore-path=.gitignore --max-warnings=0 .",
"lint": "npm run lint:js && npm run lint:commit",
"test": "jest",
2021-07-23 18:52:42 +02:00
"prepare": "husky install",
"release": "standard-version"
2020-12-21 22:06:13 +01:00
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
2021-05-21 22:51:09 +02:00
"@nuxtjs/markdownit": "^2.0.0",
2020-12-21 22:06:13 +01:00
"@nuxtjs/pwa": "^3.0.2",
2021-06-12 22:31:08 +02:00
"@nuxtjs/sitemap": "^2.4.0",
2021-02-13 19:55:45 +01:00
"@nuxtjs/toast": "^3.3.1",
2021-05-17 19:59:23 +02:00
"bip39": "^3.0.4",
2021-04-01 18:47:42 +02:00
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
2021-06-05 23:34:03 +02:00
"convert-units": "^2.3.4",
"core-js": "^3.15.2",
2021-05-17 21:54:09 +02:00
"cron-validator": "^1.2.1",
"cronstrue": "^1.114.0",
2021-03-14 20:11:39 +01:00
"crypto-js": "^4.0.0",
"nuxt": "^2.15.7",
"nuxt-i18n": "^6.27.3",
2021-05-17 23:11:47 +02:00
"qrcode.vue": "^1.7.0",
2021-07-23 23:01:40 +02:00
"vue-plausible": "^1.2.1",
"vuetify": "^2.5.7",
2021-02-06 11:14:28 +01:00
"vuetify-toast-snackbar": "^0.6.1"
2020-12-21 22:06:13 +01:00
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nuxt/types": "^2.15.7",
2021-05-17 19:59:23 +02:00
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-fonts": "^1.3.0",
2021-02-13 19:55:45 +01:00
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/vuetify": "^1.12.1",
2021-04-01 18:47:42 +02:00
"@types/color-convert": "^2.0.0",
"@types/color-name": "^1.1.1",
2021-06-05 23:34:03 +02:00
"@types/convert-units": "^2.3.3",
"@types/crypto-js": "^4.0.2",
"@vue/test-utils": "^1.2.1",
2020-12-21 22:06:13 +01:00
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
2021-05-17 19:59:23 +02:00
"eslint-plugin-prettier": "^3.4.0",
2021-06-12 18:01:20 +02:00
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
2020-12-21 22:49:27 +01:00
"less": "^4.0.0",
"less-loader": "^7.1.0",
2021-02-06 11:14:28 +01:00
"nuxt-property-decorator": "^2.9.1",
2021-07-23 18:52:42 +02:00
"standard-version": "^9.3.1",
2021-05-17 19:59:23 +02:00
"ts-jest": "^26.5.6",
2021-05-28 19:44:27 +02:00
"vue-jest": "^3.0.4",
"yaml": "^1.10.2"
2020-12-21 22:06:13 +01:00
}
}