Базовые файлы проекта

This commit is contained in:
Book Pauk
2018-12-20 14:53:05 +07:00
parent adfbc7dee7
commit 05a027f938
5 changed files with 1740 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
/application_env
/node_modules

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Liberama
Свободный обмен книгами в формате fb2

1
application_env.example Normal file
View File

@@ -0,0 +1 @@
local

1713
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "Liberama",
"version": "0.1.0",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.0",
"eslint": "^5.4.0",
"eslint-plugin-html": "^1.4.0",
"eslint-plugin-node": "^8.0.0"
},
"scripts": {
"lint": "eslint *.js"
},
"dependencies": {
"bluebird": "^3.5.3",
"express": "^4.16.4"
}
}