mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.1 KiB
81 lines
2.1 KiB
{
|
|
"name": "wekan",
|
|
"version": "v4.17.0",
|
|
"description": "Open-Source kanban",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint --cache --ext .js --ignore-path .eslintignore .",
|
|
"lint:eslint:fix": "eslint --ext .js --ignore-path .eslintignore --fix .",
|
|
"lint:staged": "lint-staged",
|
|
"prettify": "prettier --write '**/*.js' '**/*.jsx'",
|
|
"test": "npm run lint"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"meteor npm run prettify",
|
|
"meteor npm run lint:eslint:fix",
|
|
"git add --force"
|
|
],
|
|
"*.jsx": [
|
|
"meteor npm run prettify",
|
|
"meteor npm run lint:eslint:fix",
|
|
"git add --force"
|
|
],
|
|
"*.json": [
|
|
"prettier --write",
|
|
"git add --force"
|
|
]
|
|
},
|
|
"pre-commit": "lint:staged",
|
|
"eslintConfig": {
|
|
"extends": "@meteorjs/eslint-config-meteor"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/wekan/wekan.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/wekan/wekan/issues"
|
|
},
|
|
"homepage": "https://wekan.github.io",
|
|
"devDependencies": {
|
|
"babel-eslint": "^10.1.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-meteor": "0.0.9",
|
|
"eslint-config-prettier": "^3.6.0",
|
|
"eslint-import-resolver-meteor": "^0.4.0",
|
|
"eslint-plugin-import": "^2.20.0",
|
|
"eslint-plugin-meteor": "^5.1.0",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"lint-staged": "^7.3.0",
|
|
"pre-commit": "^1.2.2",
|
|
"prettier": "^1.19.1",
|
|
"prettier-eslint": "^9.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/runtime": "^7.9.6",
|
|
"@root/request": "^1.6.1",
|
|
"ajv": "^5.0.0",
|
|
"babel-runtime": "^6.26.0",
|
|
"bcrypt": "^3.0.7",
|
|
"bson": "^4.0.3",
|
|
"bunyan": "^1.8.12",
|
|
"csv-stringify": "^5.5.0",
|
|
"es6-promise": "^4.2.4",
|
|
"fibers": "^5.0.0",
|
|
"flatted": "^2.0.1",
|
|
"gridfs-stream": "^0.5.3",
|
|
"jszip": "^3.4.0",
|
|
"ldapjs": "^1.0.2",
|
|
"meteor-node-stubs": "^0.4.1",
|
|
"mongodb": "^3.5.7",
|
|
"os": "^0.1.1",
|
|
"page": "^1.11.5",
|
|
"papaparse": "^5.2.0",
|
|
"qs": "^6.9.4",
|
|
"source-map-support": "^0.5.19",
|
|
"xss": "^1.0.6"
|
|
}
|
|
}
|
|
|