init package.json, install notie

This commit is contained in:
Son NK 2020-02-04 16:05:55 +07:00
parent 961301214d
commit a99bc462e5
3 changed files with 36 additions and 1 deletions

3
.gitignore vendored
View File

@ -5,4 +5,5 @@ db.sqlite
.pytest_cache
.vscode
.DS_Store
config
config
static/node_modules

13
static/package-lock.json generated Normal file
View File

@ -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="
}
}
}

21
static/package.json Normal file
View File

@ -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"
}
}