From a99bc462e561bc36eaac037ce2e83c5fb6b861ec Mon Sep 17 00:00:00 2001 From: Son NK Date: Tue, 4 Feb 2020 16:05:55 +0700 Subject: [PATCH] init package.json, install notie --- .gitignore | 3 ++- static/package-lock.json | 13 +++++++++++++ static/package.json | 21 +++++++++++++++++++++ 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 static/package-lock.json create mode 100644 static/package.json 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" + } +}