A small single page app for generating custom pride backgrounds based off a background that has the Trans, Lesbian, and Pride flags rotated 45 degrees.
https://pride.nicholemattera.gay
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.
65 lines
1.4 KiB
65 lines
1.4 KiB
{ |
|
"name": "pride-background", |
|
"version": "0.1.0", |
|
"author": "Nichole Mattera", |
|
"license": "MIT", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://git.nicholemattera.com/NicholeMattera/Pride-Background-Generator.git" |
|
}, |
|
"homepage": "https://pride.nicholemattera.gay", |
|
"private": true, |
|
"scripts": { |
|
"serve": "vue-cli-service serve", |
|
"build": "vue-cli-service build", |
|
"lint": "vue-cli-service lint" |
|
}, |
|
"dependencies": { |
|
"core-js": "^3.8.3", |
|
"vue": "^3.2.13" |
|
}, |
|
"devDependencies": { |
|
"@babel/core": "^7.12.16", |
|
"@babel/eslint-parser": "^7.12.16", |
|
"@vue/cli-plugin-babel": "~5.0.0", |
|
"@vue/cli-plugin-eslint": "~5.0.0", |
|
"@vue/cli-service": "~5.0.0", |
|
"eslint": "^7.32.0", |
|
"eslint-plugin-vue": "^8.0.3", |
|
"prettier": "2.5.1" |
|
}, |
|
"eslintConfig": { |
|
"root": true, |
|
"env": { |
|
"node": true |
|
}, |
|
"extends": [ |
|
"plugin:vue/vue3-essential", |
|
"eslint:recommended" |
|
], |
|
"parserOptions": { |
|
"parser": "@babel/eslint-parser" |
|
}, |
|
"rules": { |
|
"comma-dangle": [ |
|
"error", |
|
{ |
|
"arrays": "always-multiline", |
|
"objects": "always-multiline", |
|
"imports": "always-multiline", |
|
"exports": "always-multiline" |
|
} |
|
], |
|
"semi": [ |
|
"error", |
|
"never" |
|
] |
|
} |
|
}, |
|
"browserslist": [ |
|
"> 1%", |
|
"last 2 versions", |
|
"not dead", |
|
"not ie 11" |
|
] |
|
}
|
|
|