1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 12:49:43 +02:00
planka/server/package.json
2019-10-14 21:50:52 +05:00

37 lines
1.1 KiB
JSON

{
"name": "planka-server",
"private": true,
"main": "app.js",
"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": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"start": "npm run db:init && NODE_ENV=production node app.js",
"start:dev": "nodemon",
"test": "npm run lint && npm run custom-tests && echo 'Done.'"
},
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^8.1.0",
"dotenv-cli": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"sails": "^1.2.3",
"sails-hook-orm": "^2.1.1",
"sails-hook-sockets": "^2.0.0",
"sails-postgresql": "^1.0.2",
"sharp": "^0.23.1"
},
"devDependencies": {
"eslint": "5.16.0",
"nodemon": "^1.19.3"
},
"engines": {
"node": "^12.10"
}
}