You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
{
|
|
"name": "finda.fish",
|
|
"version": "0.0.1-alpha",
|
|
"description": "An online poker tracker for PokerTH which relies on user data donations.",
|
|
"homepage": "https://finda.fish",
|
|
"main": "server.js",
|
|
"type": "module",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=12.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore .",
|
|
"fix": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore --fix .",
|
|
"build": "nuxt build",
|
|
"start": "nuxt build && node server.js",
|
|
"dev": "nodemon -e js,vue -w api -w client -w server.js -w nuxt.config.js .",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"Poker",
|
|
"Tracker",
|
|
"PokerTH"
|
|
],
|
|
"author": "Daniel Steinhauer",
|
|
"license": "AGPL-3.0-or-later",
|
|
"dependencies": {
|
|
"@nuxtjs/auth": "^4.9.1",
|
|
"@nuxtjs/axios": "^5.13.1",
|
|
"@nuxtjs/pwa": "^3.3.5",
|
|
"@nuxtjs/vuetify": "^1.11.3",
|
|
"axios": "^0.21.1",
|
|
"better-sqlite3": "^7.1.5",
|
|
"express": "^4.17.1",
|
|
"express-jwt": "^6.0.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"morgan": "^1.10.0",
|
|
"multer": "^1.4.2",
|
|
"mysql": "^2.18.1",
|
|
"nuxt": "^2.15.4",
|
|
"nuxt-i18n": "^6.26.0",
|
|
"nuxt-matomo": "^1.2.4",
|
|
"vuetify": "^2.4.11"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/eslint-config-airbnb": "^5.3.0",
|
|
"css-loader": "~4.3.0",
|
|
"eslint": "^7.25.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-vue": "^7.9.0",
|
|
"nodemon": "^2.0.7"
|
|
}
|
|
}
|