diff --git a/.gitignore b/.gitignore index 44a7394c..d33992ec 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ db.sqlite .pytest_cache .vscode .DS_Store -config \ No newline at end of file +config +static/node_modules \ No newline at end of file diff --git a/static/package-lock.json b/static/package-lock.json new file mode 100644 index 00000000..e33db678 --- /dev/null +++ b/static/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "simplelogin", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "notie": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/notie/-/notie-4.3.1.tgz", + "integrity": "sha1-DRmd4VEwJC4hZ1UHq6Y8aSngrdo=" + } + } +} diff --git a/static/package.json b/static/package.json new file mode 100644 index 00000000..7ff7f7bc --- /dev/null +++ b/static/package.json @@ -0,0 +1,21 @@ +{ + "name": "simplelogin", + "version": "1.0.0", + "description": "Open source email alias solution", + "repository": { + "type": "git", + "url": "git+https://github.com/simple-login/app.git" + }, + "keywords": [ + "email-alias" + ], + "author": "SimpleLogin", + "license": "MIT", + "bugs": { + "url": "https://github.com/simple-login/app/issues" + }, + "homepage": "https://github.com/simple-login/app#readme", + "dependencies": { + "notie": "^4.3.1" + } +}