1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-09 15:35:29 +02:00

Docker, update readme, update dependencies

This commit is contained in:
Maksim Eltyshev 2019-10-01 04:18:33 +05:00
parent 2398199740
commit adbcb67f03
30 changed files with 1202 additions and 1744 deletions

View file

@ -4,10 +4,11 @@
"scripts": {
"console": "dotenv sails console",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"db:init": "cd db && node init.js",
"db:migrate": "knex migrate:latest --cwd db",
"db:seed": "knex seed:run --cwd db",
"lint": "node_modules/@sailshq/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"start": "NODE_ENV=production node app.js",
"start": "npm run db:init && NODE_ENV=production node app.js",
"start:dev": "nodemon",
"test": "npm run lint && npm run custom-tests && echo 'Done.'"
},
@ -23,13 +24,13 @@
"sails-hook-orm": "^2.1.1",
"sails-hook-sockets": "^2.0.0",
"sails-postgresql": "^1.0.1",
"sharp": "^0.23.0"
"sharp": "^0.23.1"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3",
"js-yaml": ">=3.13.1",
"mixin-deep": ">=1.3.2",
"nodemon": "^1.19.2",
"nodemon": "^1.19.3",
"set-value": ">=2.0.1"
},
"engines": {