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

75 lines
1.8 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",
2020-08-20 15:35:46 +05:00
"test": "mocha test/lifecycle.test.js test/integration/**/*.test.js"
2019-08-31 04:07:25 +05:00
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"airbnb-base",
"plugin:prettier/recommended"
],
"rules": {
"no-throw-literal": "off",
"no-undef": "off",
"prettier/prettier": [
"error",
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
}
]
},
"globals": {
"_": true,
"sails": true
}
},
2019-08-31 04:07:25 +05:00
"dependencies": {
"bcrypt": "^5.0.1",
2022-02-09 00:56:01 +05:00
"dotenv": "^16.0.0",
2022-04-16 00:08:14 +05:00
"dotenv-cli": "^5.1.0",
"filenamify": "^4.3.0",
2019-08-31 04:07:25 +05:00
"jsonwebtoken": "^8.5.1",
2022-04-16 00:08:14 +05:00
"knex": "^1.0.7",
"lodash": "^4.17.21",
2022-04-16 00:08:14 +05:00
"moment": "^2.29.2",
2020-04-21 05:04:34 +05:00
"rimraf": "^3.0.2",
2022-02-09 00:56:01 +05:00
"sails": "^1.5.2",
"sails-hook-orm": "^4.0.1",
"sails-hook-sockets": "^2.0.1",
2020-11-20 06:01:42 +05:00
"sails-postgresql-redacted": "^1.0.2-9",
2022-04-16 00:08:14 +05:00
"sharp": "^0.30.3",
2020-04-21 05:04:34 +05:00
"stream-to-array": "^2.3.0",
2020-12-18 01:02:28 +05:00
"uuid": "^8.3.2",
2022-02-09 00:56:01 +05:00
"validator": "^13.7.0"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2022-02-09 00:56:01 +05:00
"chai": "^4.3.6",
2022-04-16 00:08:14 +05:00
"eslint": "^8.13.0",
2022-02-09 00:56:01 +05:00
"eslint-config-airbnb-base": "^15.0.0",
2022-04-16 00:08:14 +05:00
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
2022-02-09 00:56:01 +05:00
"eslint-plugin-prettier": "^4.0.0",
2022-04-16 00:08:14 +05:00
"mocha": "^9.2.2",
2022-02-09 00:56:01 +05:00
"nodemon": "^2.0.15",
2022-04-16 00:08:14 +05:00
"prettier": "2.6.2",
2022-02-09 00:56:01 +05:00
"supertest": "^6.2.2"
2019-08-31 04:07:25 +05:00
},
"engines": {
2019-10-14 21:50:52 +05:00
"node": "^12.10"
2019-08-31 04:07:25 +05:00
}
}