mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "planka-server",
|
|
"private": true,
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"console": "dotenv sails console",
|
|
"db:init": "node db/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": "nodemon",
|
|
"start:prod": "node app.js --prod",
|
|
"test": "mocha test/lifecycle.test.js test/integration/**/*.test.js test/utils/**/*.test.js"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"airbnb-base",
|
|
"../package.json"
|
|
],
|
|
"rules": {
|
|
"no-throw-literal": "off",
|
|
"no-undef": "off"
|
|
},
|
|
"globals": {
|
|
"_": true,
|
|
"sails": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.1",
|
|
"dotenv": "^16.3.1",
|
|
"dotenv-cli": "^7.3.0",
|
|
"filenamify": "^4.3.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"knex": "^3.0.1",
|
|
"lodash": "^4.17.21",
|
|
"moment": "^2.29.4",
|
|
"move-file": "^2.1.0",
|
|
"openid-client": "^5.6.1",
|
|
"rimraf": "^5.0.5",
|
|
"sails": "^1.5.7",
|
|
"sails-hook-orm": "^4.0.2",
|
|
"sails-hook-sockets": "^2.0.4",
|
|
"sails-postgresql-redacted": "^1.0.2-9",
|
|
"sharp": "^0.33.0",
|
|
"stream-to-array": "^2.3.0",
|
|
"uuid": "^9.0.1",
|
|
"validator": "^13.11.0",
|
|
"winston": "^3.11.0",
|
|
"zxcvbn": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.10",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.29.0",
|
|
"mocha": "^10.2.0",
|
|
"nodemon": "^3.0.1",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|