mirror of
https://github.com/jlengrand/supabase-fail.git
synced 2026-03-10 08:41:18 +00:00
60 lines
1.8 KiB
JSON
60 lines
1.8 KiB
JSON
{
|
|
"name": "supabase-fail",
|
|
"description": "Webcomponent supabase-fail following open-wc recommendations",
|
|
"license": "MIT",
|
|
"author": "supabase-fail",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
|
|
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
|
|
"build": "rimraf dist && rollup -c rollup.config.js && npm run analyze -- --exclude dist",
|
|
"start:build": "web-dev-server --root-dir dist --app-index index.html --open",
|
|
"analyze": "cem analyze --litelement",
|
|
"start": "web-dev-server"
|
|
},
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^1.35.4",
|
|
"lit": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.16.4",
|
|
"@custom-elements-manifest/analyzer": "^0.4.17",
|
|
"@open-wc/building-rollup": "^2.0.1",
|
|
"@open-wc/eslint-config": "^4.3.0",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^22.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
"@web/dev-server": "^0.1.28",
|
|
"@web/rollup-plugin-html": "^1.10.1",
|
|
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
|
|
"babel-plugin-template-html-minifier": "^4.1.0",
|
|
"deepmerge": "^4.2.2",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^10.5.4",
|
|
"prettier": "^2.4.1",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.60.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-workbox": "^6.2.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@open-wc",
|
|
"prettier"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"arrowParens": "avoid"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"customElements": "custom-elements.json"
|
|
}
|