Commit c6543f10 by Heechul Kim

config.js and package.json added

parent f5b9b329
Showing with 88 additions and 0 deletions
export const API_URL = 'http://121.254.203.198:8000/api'
export const selectOS = [
{label: 'CENTOS7', value: 'CENTOS7'},
{label: 'UXENOS', value: 'UXENOS'},
{label: 'JESSIE', value: 'JESSIE'}
]
export function checkStrength (pw) {
// initialize
var iStrength = 0
// check length
if (pw.length < 8) {
return iStrength
}
if (pw.length > 7) iStrength += 1
if (pw.length > 9) iStrength += 1
if (pw.match(/[a-zA-Z]/) && pw.match(/[0-9]/)) iStrength += 1
if (pw.match(/\W/)) iStrength += 1
return iStrength
}
{
"name": "quasar-app",
"version": "0.0.1",
"description": "A Quasar App",
"author": "Your Name",
"scripts": {
"clean": "node build/script.clean.js",
"dev": "node build/script.dev.js",
"build": "node build/script.build.js",
"lint": "eslint --ext .js,.vue src"
},
"dependencies": {
"babel-runtime": "^6.0.0",
"fastclick": "^1.0.6",
"material-design-icons": "^3.0.1",
"moment": "^2.15.0",
"quasar-framework": "^0.13.0",
"roboto-fontface": "^0.7.0",
"velocity-animate": "^1.2.3",
"vue": "2.1.10",
"vue-cookie": "^1.1.3",
"vue-resource": "^1.1.2",
"vue-router": "^2.0.0",
"vuelidate": "^0.2.0"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"colors": "^1.1.2",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.26.0",
"eslint": "^3.0.1",
"eslint-config-standard": "^6.2.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.8.1",
"http-proxy-middleware": "^0.17.0",
"json-loader": "^0.5.4",
"opn": "^4.0.2",
"postcss-loader": "^1.0.0",
"progress-bar-webpack-plugin": "^1.9.0",
"shelljs": "^0.7.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"url-loader": "^0.5.7",
"vue-loader": "^10.0.0",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "2.1.10",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2",
"webpack-merge": "^2.0.0"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment