Created
November 30, 2018 16:09
-
-
Save jefBinomed/121171f5404ee71c2cbc6df13524236e to your computer and use it in GitHub Desktop.
2018-countdown-packagevue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "countdowndevfest2018", | |
"version": "1.0.0", | |
"description": "CountDown game for DevFest Nantes 2018", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"vue": "vue", | |
"serve": "vue-cli-service serve", | |
"clean": "del-cli dist/*", | |
"build": "npm run clean && vue-cli-service build && npm run cp-assets", | |
"lint": "vue-cli-service lint", | |
"cp-assets": "cpx \"public/assets/audio/*\" \"dist/assets/audio\" && cpx \"public/assets/video/*\" \"dist/assets/video/*\"", | |
"deploy": "npm run build && firebase deploy --only hosting", | |
"deploy-ci": "npm run build && firebase deploy --only hosting --token \"$FIREBASE_TOKEN\" --project \"$PROJECT_NAME\"", | |
"firebase": "firebase" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/GDG-Nantes/CountDownDevFest2018.git" | |
}, | |
"keywords": [ | |
"vuejs", | |
"pwa", | |
"game" | |
], | |
"author": "jefBinomed", | |
"license": "ISC", | |
"bugs": { | |
"url": "https://github.com/GDG-Nantes/CountDownDevFest2018/issues" | |
}, | |
"homepage": "https://github.com/GDG-Nantes/CountDownDevFest2018#readme", | |
"dependencies": { | |
"cpx": "^1.5.0", | |
"del-cli": "^1.1.0", | |
"firebase": "^5.3.0", | |
"firebaseui": "^3.4.1", | |
"vue": "^2.5.16", | |
"vue-router": "^3.0.1" | |
}, | |
"devDependencies": { | |
"@vue/cli": "^3.0.0-rc.3", | |
"@vue/cli-plugin-babel": "^3.0.0-beta.15", | |
"@vue/cli-plugin-eslint": "^3.0.0-beta.15", | |
"@vue/cli-service": "^3.0.0-beta.15", | |
"firebase-tools": "^3.19.3", | |
"vue-template-compiler": "^2.5.16" | |
}, | |
"eslintConfig": { | |
"root": true, | |
"env": { | |
"node": true | |
}, | |
"extends": [ | |
"plugin:vue/essential", | |
"eslint:recommended" | |
], | |
"rules": {}, | |
"parserOptions": { | |
"parser": "babel-eslint" | |
} | |
}, | |
"postcss": { | |
"plugins": { | |
"autoprefixer": {} | |
} | |
}, | |
"browserslist": [ | |
"> 1%", | |
"last 2 versions", | |
"not ie <= 8" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment