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

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.0",
"dotenv": "^8.2.0",
2020-09-28 04:40:10 +05:00
"dotenv-cli": "^4.0.0",
"filenamify": "^4.2.0",
2019-08-31 04:07:25 +05:00
"jsonwebtoken": "^8.5.1",
2020-11-20 06:01:42 +05:00
"knex": "^0.21.12",
2020-08-20 15:35:46 +05:00
"lodash": "^4.17.20",
2020-10-20 16:10:25 +05:00
"moment": "^2.29.1",
2020-04-21 05:04:34 +05:00
"rimraf": "^3.0.2",
2020-10-20 16:10:25 +05:00
"sails": "^1.4.0",
"sails-hook-orm": "^3.0.1",
2019-08-31 04:07:25 +05:00
"sails-hook-sockets": "^2.0.0",
2020-11-20 06:01:42 +05:00
"sails-postgresql-redacted": "^1.0.2-9",
"sharp": "^0.26.3",
2020-04-21 05:04:34 +05:00
"stream-to-array": "^2.3.0",
2020-10-20 16:10:25 +05:00
"uuid": "^8.3.1",
2020-09-28 04:40:10 +05:00
"validator": "^13.1.17"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2020-08-20 15:35:46 +05:00
"chai": "^4.2.0",
2020-11-20 06:01:42 +05:00
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
2020-10-20 16:10:25 +05:00
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
2020-11-20 06:01:42 +05:00
"mocha": "^8.2.1",
2020-10-20 16:10:25 +05:00
"nodemon": "^2.0.6",
2020-09-28 04:40:10 +05:00
"prettier": "2.1.2",
2020-11-20 06:01:42 +05:00
"supertest": "^6.0.1"
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
}
}