1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/server/package.json

66 lines
1.6 KiB
JSON
Raw Normal View History

2019-08-31 04:07:25 +05:00
{
"name": "planka-server",
2019-08-31 04:07:25 +05:00
"private": true,
"main": "app.js",
"scripts": {
"console": "dotenv sails console",
"db:init": "node db/init.js",
2019-08-31 04:07:25 +05:00
"db:migrate": "knex migrate:latest --cwd db",
"db:seed": "knex seed:run --cwd db",
2019-10-14 21:50:52 +05:00
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"start": "nodemon",
"start:prod": "node app.js --prod",
"test": "mocha test/lifecycle.test.js test/integration/**/*.test.js test/utils/**/*.test.js"
2019-08-31 04:07:25 +05:00
},
"eslintConfig": {
"extends": [
"airbnb-base",
"../package.json"
],
"rules": {
"no-throw-literal": "off",
"no-undef": "off"
},
"globals": {
"_": true,
"sails": true
}
},
2019-08-31 04:07:25 +05:00
"dependencies": {
2023-11-17 14:34:10 +01:00
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"filenamify": "^4.3.0",
2023-11-17 14:34:10 +01:00
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"lodash": "^4.17.21",
2022-07-24 17:04:26 +02:00
"moment": "^2.29.4",
2022-08-26 16:02:47 +02:00
"move-file": "^2.1.0",
"nodemailer": "^6.9.12",
2023-11-17 14:34:10 +01:00
"openid-client": "^5.6.1",
"rimraf": "^5.0.5",
2023-10-17 19:23:09 +02:00
"sails": "^1.5.7",
2022-11-21 00:54:05 +01:00
"sails-hook-orm": "^4.0.2",
2023-11-17 14:34:10 +01:00
"sails-hook-sockets": "^2.0.4",
2020-11-20 06:01:42 +05:00
"sails-postgresql-redacted": "^1.0.2-9",
"sharp": "^0.33.2",
2020-04-21 05:04:34 +05:00
"stream-to-array": "^2.3.0",
2023-11-17 14:34:10 +01:00
"uuid": "^9.0.1",
"validator": "^13.11.0",
"winston": "^3.11.0",
"zxcvbn": "^4.4.2"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2023-11-17 14:34:10 +01:00
"chai": "^4.3.10",
"eslint": "^8.53.0",
2022-02-09 00:56:01 +05:00
"eslint-config-airbnb-base": "^15.0.0",
2023-11-17 14:34:10 +01:00
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
2019-08-31 04:07:25 +05:00
},
"engines": {
2023-11-17 14:34:10 +01:00
"node": ">=18"
2019-08-31 04:07:25 +05:00
}
}