1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-03 04:25:27 +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": {
"@aws-sdk/client-s3": "^3.688.0",
2023-11-17 14:34:10 +01:00
"bcrypt": "^5.1.1",
2024-04-23 15:45:47 +02:00
"dotenv": "^16.4.5",
2024-06-02 01:34:03 +02:00
"dotenv-cli": "^7.4.2",
"fs-extra": "^11.2.0",
2023-11-17 14:34:10 +01:00
"jsonwebtoken": "^9.0.2",
2024-04-23 15:45:47 +02:00
"knex": "^3.1.0",
"lodash": "^4.17.21",
2024-04-23 15:45:47 +02:00
"moment": "^2.30.1",
2024-09-16 12:04:56 +02:00
"nodemailer": "^6.9.15",
"openid-client": "^5.7.0",
"rimraf": "^5.0.10",
2024-10-22 21:00:37 +02:00
"sails": "^1.5.12",
2024-04-23 15:45:47 +02:00
"sails-hook-orm": "^4.0.3",
2024-09-16 12:04:56 +02:00
"sails-hook-sockets": "^3.0.1",
2024-04-23 15:45:47 +02:00
"sails-postgresql": "^5.0.1",
"serve-static": "^1.13.1",
2024-09-16 12:04:56 +02:00
"sharp": "^0.33.5",
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",
2024-06-02 01:34:03 +02:00
"validator": "^13.12.0",
2024-09-16 12:04:56 +02:00
"winston": "^3.14.2",
"zxcvbn": "^4.4.2"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2024-09-16 12:04:56 +02:00
"chai": "^4.5.0",
2024-04-23 15:45:47 +02:00
"eslint": "^8.57.0",
2022-02-09 00:56:01 +05:00
"eslint-config-airbnb-base": "^15.0.0",
2024-09-16 12:04:56 +02:00
"eslint-plugin-import": "^2.30.0",
"mocha": "^10.7.3",
"nodemon": "^3.1.4"
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
}
}