2019-08-31 04:07:25 +05:00
|
|
|
{
|
2019-10-03 20:07:41 +05:00
|
|
|
"name": "planka-server",
|
2019-08-31 04:07:25 +05:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
|
|
|
"scripts": {
|
|
|
|
"console": "dotenv sails console",
|
2020-04-25 04:57:31 +05:00
|
|
|
"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.'",
|
2020-04-24 21:44:54 +05:00
|
|
|
"start": "nodemon",
|
|
|
|
"start:prod": "node app.js --prod",
|
2022-08-22 18:42:56 -04:00
|
|
|
"test": "mocha test/lifecycle.test.js test/integration/**/*.test.js test/utils/**/*.test.js"
|
2019-08-31 04:07:25 +05:00
|
|
|
},
|
2019-11-05 18:01:42 +05:00
|
|
|
"eslintConfig": {
|
2020-02-03 18:42:31 +05:00
|
|
|
"extends": [
|
|
|
|
"airbnb-base",
|
2022-11-21 02:22:01 +07:00
|
|
|
"../package.json"
|
2020-02-03 18:42:31 +05:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-throw-literal": "off",
|
2022-11-21 02:22:01 +07:00
|
|
|
"no-undef": "off"
|
2020-02-03 18:42:31 +05:00
|
|
|
},
|
2019-11-05 18:01:42 +05:00
|
|
|
"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",
|
2021-06-24 01:05:22 +05:00
|
|
|
"filenamify": "^4.3.0",
|
2023-11-17 14:34:10 +01:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
|
|
|
"knex": "^3.0.1",
|
2021-06-24 01:05:22 +05:00
|
|
|
"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",
|
2024-03-22 00:14:09 +01:00
|
|
|
"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",
|
2024-01-18 10:58:26 +01:00
|
|
|
"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",
|
2022-09-03 22:47:06 +05:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|